terraform
provider "aws" {
profile = "default"
}
resource "aws_instance" "loy_app_server" {
ami = "ami-0ddbb7879c118c7fa"
instance_type = "t2.micro"
tags = {
Name = "ExampleLoyAppServerInstance"
}
}
Last updated
provider "aws" {
profile = "default"
}
resource "aws_instance" "loy_app_server" {
ami = "ami-0ddbb7879c118c7fa"
instance_type = "t2.micro"
tags = {
Name = "ExampleLoyAppServerInstance"
}
}
Last updated