resource "aws_instance" "web_server" { ami = "ami-12345678" instance_type = "t3.micro" tags = { Name = "WebServer" Environment = "Production" } }