great-sunset-355
07/27/2021, 3:47 AMlittle-cartoon-10569
07/27/2021, 4:11 AMtags
property (at least in AWS). You'd need to be aware of the tagsAll
property that some resources also have.great-sunset-355
07/27/2021, 5:06 AMtagsAll
- do you have any example of such a resource? I wonder if it could have both arguments then?little-cartoon-10569
07/27/2021, 5:23 AMtagsAll
is supposed to be a combination of tags
and any tags that AWS gives the resource... I did come across a few resources with it, I'll have a quick hunt around for some./**
* A map of tags assigned to the resource, including those inherited from the provider .
*/
readonly tagsAll: pulumi.Output<{
[key: string]: string;
}>;
great-sunset-355
07/27/2021, 5:38 AMtags
and tagsAll
`tagsAll`: A map of tags assigned to the resource, including those inherited from the provider .
`tags`: A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
I wonder what happens to tagsAll
if they partially match default_tags
from providerproud-art-41399
07/27/2021, 7:17 AMinspect
module to get the taggable resources.great-sunset-355
07/27/2021, 7:49 AM