provider "aws" {
region = "ap-south-1"
}
resource "aws_instance" "MyVm" {
ami = "ami-0a4a4775bdbcXXXX"
instance_type = "t2.micro"
tags = {
"Name" : "MyVM"
}
}
10 Years+ Redhat Administration Experience.
provider "aws" {
region = "ap-south-1"
}
resource "aws_instance" "MyVm" {
ami = "ami-0a4a4775bdbcXXXX"
instance_type = "t2.micro"
tags = {
"Name" : "MyVM"
}
}
Comments
Post a Comment