Hi, Maybe it is a very basic question, I have a in...
# aws
h
Hi, Maybe it is a very basic question, I have a input map and can vary with any number of key value inside map. I am trying to pass the map as tags input. I am not able to see the aws tags. can you please help.
w
Tags must be an object, `Map`s are not (at least currently) supported. See https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/aws/s3/#BucketObjectArgs-tags
Specifically -
tags: { key: “value” }
h
Thanks @white-balloon-205 It worked.