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

From wikieduonline
Jump to navigation Jump to search
Line 20: Line 20:
 
* <code>[[variables.tf]]</code>
 
* <code>[[variables.tf]]</code>
 
* [[Terraform: Data sources]]
 
* [[Terraform: Data sources]]
  [[Error: creating EC2 Instance: InvalidAMIID.NotFound: The image id '[ami-08d70e59c07c61a3a]' does not exist]]
+
  [[Error: creating EC2 Instance]]: [[InvalidAMIID.NotFound]]: The image id '[ami-08d70e59c07c61a3a]' [[does not exist]]
  
 
== See also ==
 
== See also ==

Revision as of 11:18, 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

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

See also

Advertising: