routetable1c=aws.ec2.RouteTable( "routetable1c...
# general
m
routetable1c=aws.ec2.RouteTable( "routetable1c" , vpc_id=vpc1.id, tags={ "Name": "routetable1c" } ) table1croute=aws.ec2.Route( "table1croute", route_table_id=routetable1c.id, destination_cidr_block="0.0.0.0/0", nat_gateway_id=nat1c.id ) other option using aws.ec2.Route() to added to routetable and this warning: instance_id is deprecated: Use network_interface_id instead when do pulumi deploy will not presented
p
can you be more explicit ? what is exactly your problem here ? (context, steps to reproduce, etc.)
m
warning: instance_id is deprecated: Use network_interface_id instead when do pulumi deploy. (edited)
s
@millions-parrot-88279 Hi! I’d love to try to help you, but I’ll need a bit more information about what you’re trying to do that is generating the warning.
m