Difference between revisions of "AWS instance example: main.tf"

From wikieduonline
Jump to navigation Jump to search
Line 5: Line 5:
 
  }
 
  }
 
    
 
    
  resource "[[aws_instance]]" "MYexample" {
+
  [[resource]] "[[aws_instance]]" "MYexample" {
 
   [[ami]]          = "[[ami]]-08d70e59c07c61a3a"
 
   [[ami]]          = "[[ami]]-08d70e59c07c61a3a"
 
   instance_type = "[[t2.micro]]"  
 
   instance_type = "[[t2.micro]]"  

Revision as of 10:23, 5 September 2021

provider "aws" {
  region  = "us-west-2"
  profile = "your_profile_name_here"
}
 
resource "aws_instance" "MYexample" {
 ami           = "ami-08d70e59c07c61a3a"
 instance_type = "t2.micro" 

 tags = {
   Name = "your_name_here"
 }
}

Related terms

See also

Advertising: