Missing Tags in output for CFN #34
Description
Describe the bug
Noticed that Tags seems not get transferred into the output for CFN.
Output for boto3 has the tags included.
example for CFN:
Resources:
ec20062a21:
Type: "AWS::EC2::VPC"
Properties:
CidrBlock: "10.1.0.0/16"
InstanceTenancy: "default"
Resources:
ec20062a21:
Type: "AWS::EC2::VPC"
Properties:
CidrBlock: "10.1.0.0/16"
InstanceTenancy: "default"
ec2eb57359:
Type: "AWS::EC2::InternetGateway"
Same resource in Boto3:
response = ec2_client.create_vpc(
CidrBlock='10.1.0.0/16',
AmazonProvidedIpv6CidrBlock=False,
InstanceTenancy='default'
)
response = ec2_client.create_tags(
Resources=[
'vpc-0192bf319969f9c91'
],
Tags=[
{
'key': 'Name',
'value': 'LabVPC'
}
]
)
response = ec2_client.describe_vpcs()
response = ec2_client.describe_account_attributes()
response = ec2_client.describe_account_attributes()
response = ec2_client.describe_internet_gateways()
response = ec2_client.create_internet_gateway(
)
response = ec2_client.create_tags(
Resources=[
'igw-0ad4370f4e7ebd627'
],
Tags=[
{
'key': 'Name',
'value': 'LabIGW'
}
]
)
Seems that create tags is not mapped.