https://pulumi.com logo
m

millions-parrot-88279

08/27/2023, 12:18 PM
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

proud-twilight-52651

08/27/2023, 6:47 PM
can you be more explicit ? what is exactly your problem here ? (context, steps to reproduce, etc.)
m

millions-parrot-88279

08/27/2023, 9:20 PM
warning: instance_id is deprecated: Use network_interface_id instead when do pulumi deploy. (edited)
s

salmon-account-74572

08/28/2023, 2:59 PM
@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

millions-parrot-88279

08/28/2023, 3:37 PM