Hello! quick newbie question, ive deployed some ne...
# aws
h
Hello! quick newbie question, ive deployed some network infra in aws and non of the resource have names? I would have thought that "resource name" would have populated that field? is there something I am missing?
Copy code
natMain = ec2.NatGateway(
    f"{prefix}-nat-main",
    subnet_id=subnetExt3,
    allocation_id=eipNatMain.id,
)
simple snippet
r
I think you have to attach a
Name
tag to your resource for that field to populate… it’s an AWS thing
👍 1
b
Komal beat me to it 😃
r
@billowy-army-68599 I only know this because I’ve seen you say the exact same thing elsewhere 😆
❤️ 1
h
ahh got it, thanks @red-match-15116 and @billowy-army-68599
b
Learning together is the best type of learning 😍
💯 2
🤝 1