I’m attempting to add names to all of the objects I deploy for my own naming and tracking purposes. I’m having trouble getting a name to apply to the network interface. If I add the tag manually in the console, it goes where I expect it to. Here is the block I am using for the interface, but the tag never shows up in the console.
resource "aws_network_interface" "test-nic1" {
subnet_id = aws_subnet.subnet1.id
private_ips = [ "192.168.100.11" ]
tags = {
Name = "nic-test1"
}
}
Does this name come from somewhere else?