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

From wikieduonline
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
  
  provider "[[aws]]" {
+
  [[provider]] "[[aws]]" {
 
   region  = "[[us-west-2]]"
 
   region  = "[[us-west-2]]"
   profile = "your_profile_name_here"
+
   [[profile]] = "your_profile_name_here"
 
  }
 
  }
 
    
 
    
  resource "[[aws_instance]]" "MYexample" {
+
  [[resource]] "[[aws_instance]]" "MYexample" {
   [[ami]]          = "[[ami]]-08d70e59c07c61a3a"
+
   [[ami]]          = "[[ami-08d70e59c07c61a3a]]"
   instance_type = "[[t2.micro]]"  
+
   [[instance_type]] = "[[t2.micro]]"  
 
   
 
   
 
   tags = {
 
   tags = {
Line 15: Line 15:
  
 
== Related terms ==
 
== Related terms ==
 +
* [[AWS instance example with aws_ami lookup]]
 
* <code>[[terraform state show aws_instance.MYexample]]</code>
 
* <code>[[terraform state show aws_instance.MYexample]]</code>
 
* <code>[[terraform apply]]</code>
 
* <code>[[terraform apply]]</code>
 +
* [[Terraform examples]]
 +
* <code>[[variables.tf]]</code>
 +
* [[Terraform: Data sources]]
 +
[[Error: creating EC2 Instance]]: [[InvalidAMIID.NotFound]]: The image id '[ami-08d70e59c07c61a3a]' [[does not exist]]
  
 
== See also ==
 
== See also ==

Latest revision as of 11:19, 7 September 2022

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[edit]

Error: creating EC2 Instance: InvalidAMIID.NotFound: The image id '[ami-08d70e59c07c61a3a]' does not exist

See also[edit]

Advertising: