adamant-honey-71910
07/02/2022, 5:24 PMassociatePublicIpAddress
to false doesn't actually do anything and it assigns it anyway and tracks it as true. I'm new to Pulumi so I may be missing something, or maybe just be missing some odd default behavior in AWS. Code in thread.const web = new aws.ec2.Instance('my-instance', {
ami: recentAmazonLinuxAmi().id,
instanceType: 't4g.nano',
associatePublicIpAddress: false,
});
billowy-army-68599
07/02/2022, 6:37 PMadamant-honey-71910
07/04/2022, 2:47 PM