Difference between revisions of "Terraform resource: aws instance"

From wikieduonline
Jump to navigation Jump to search
Line 10: Line 10:
 
     Name = "your_name_here"
 
     Name = "your_name_here"
 
   }
 
   }
 +
}
 +
 +
 +
Example for [[terraform import]]:
 +
resource "aws_instance" "restore-backups-machine" {
 +
  # (resource arguments)
 
  }
 
  }
  

Revision as of 19:41, 22 June 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"
 }
}


Example for terraform import:

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

Examples

Arguments

Related terms

See also

Advertising: