This message was deleted.
# aws
s
This message was deleted.
b
Unfortunately the properties are not exposed on the underlying terraform resource: https://github.com/hashicorp/terraform-provider-aws/issues/18077
I've partially worked around this - unfortunately not in a satisfying way, by calling the
aws
cli via a Pulumi Command resource:
Copy code
aws transfer tag-resource --arn {ftpServer.Arn} --tags Key=aws:transfer:customHostname,Value={args.TransferCustomHostname}
Note I'm not using route53, so I'm not setting the 2nd tag.
g
Hmm, I haven't seen the command component before, I think that will work well. Not ideal, but given the context, I think it is a good solution. Thank you for that.
b
You could shell out to the
aws
cli yourself without the Command resource - it's not mandatory for this solution to work
g
Yes, that is where I was heading, but it looks more elegant having the command component, I like it :)