Difference between revisions of "Terraform resource: aws instance"

From wikieduonline
Jump to navigation Jump to search
Line 11: Line 11:
 
   }
 
   }
 
  }
 
  }
 +
 +
See also: [[AWS instance example: main.tf:]]
  
  

Revision as of 11:16, 7 September 2022

https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance

Basic example

resource "aws_instance" "MYexample" {
 ami           = "ami-08d70e59c07c61a3a"
 instance_type = "t2.micro" 

 tags = {
   Name = "your_name_here"
 }
}
See also: AWS instance example: main.tf:


Example for terraform import:

resource "aws_instance" "restore-backups-machine" {
  # (resource arguments)
}

Examples

Arguments

Related terms

See also

Advertising: