resource "aws_instance" "example" { ami = var.AMIS[var.AWS_REGION] instance_type = "t2.micro" vpc_security_group_ids = [aws_security_group.instance.id] # When the instance boots, start a web server on port 8080 that responds with "Hello, World!". user_data = < index.html nohup busybox httpd -f -p 8080 & EOF }