glamorous-spring-30202
07/04/2022, 7:14 AMaws:transfer:customHostname
and aws:transfer:route53HostedZoneId
. The problem is that those tags start with aws:
which is a reserved prefix. It works if I add those tags through the command line, and the guide mentions it should work with CDK. So, I am wondering if there is a way I can create those tags with pulumi as well, or if anyone encountered this and has a workaround. Thank youbig-agent-83308
07/04/2022, 7:49 AMaws
cli via a Pulumi Command resource:
aws transfer tag-resource --arn {ftpServer.Arn} --tags Key=aws:transfer:customHostname,Value={args.TransferCustomHostname}
glamorous-spring-30202
07/04/2022, 8:00 AMbig-agent-83308
07/04/2022, 8:09 AMaws
cli yourself without the Command resource - it's not mandatory for this solution to workglamorous-spring-30202
07/04/2022, 8:11 AM