millions-pharmacist-626
01/02/2023, 5:55 PMpulumi up
, instead of specifying tags manually for each resource?
For example, in my stack I'm creating an EC2 instance, an elastic ip address and a security group.
For those 3 resources, I add a tag such as createdBy: Pulumi
. However, the underlying Network Interface that gets automatically generated isn't directly defined as code, thus it remains tagless.
I was wondering if it's possible to:
1 - specify a set of tags that gets automatically applied to all resources created by pulumi
2 - use the above set to also tag the resources not directly defined as code, but still created during the process (like the network interface mentioned above)fierce-ability-58936
01/10/2023, 6:49 PMdefaultTags
as in https://www.pulumi.com/registry/packages/aws/installation-configuration/#configuration-options should workmillions-pharmacist-626
01/12/2023, 9:44 AM