damp-toddler-4614
03/03/2022, 3:47 AMvar subnet = new Ec2.Subnet(subnetName, new Ec2.SubnetArgs
{
CidrBlock = config.CidrBlock,
AvailabilityZone=config.AvailabilityZone,
VpcId = config.VpcId
});
but when the subnet is created in aws, it doesnt have the name defined. The SubnetArgs
also doesnt have a Name
property unlike most other resources. Is there a way I can specify the name?billowy-army-68599
03/03/2022, 4:02 AMTag = {
Name: my-name
}
damp-toddler-4614
03/03/2022, 4:05 AM