This message was deleted.
s
This message was deleted.
g
For most resources, the AWS Console actually uses a tag on the resource instead of an actual name property. So you need to add the following to your subnet to see a Name in the console.
Copy code
tags: {
    Name: "public",
}
👌 1
b
Thanks a lot, I’ll try that! 👍