droplet: Always create with the "dev" tag.

This allows the firewall to be enforced on new hosts.
This commit is contained in:
Alex Vandiver 2022-03-10 02:36:40 +00:00 committed by Tim Abbott
parent 25d753889b
commit d8c77eafb4
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ if __name__ == "__main__":
my_token=api_token,
template_id=template_id,
name=droplet_domain_name,
tags=args.tags,
tags=args.tags + ["dev"],
user_data=user_data,
)