Difference between revisions of "Terraform resource: aws instance"

From wikieduonline
Jump to navigation Jump to search
Line 60: Line 60:
 
* <code>[[lifecycle]]</code>
 
* <code>[[lifecycle]]</code>
 
* <code>[[tenancy]]</code>
 
* <code>[[tenancy]]</code>
 +
* <code>[[instance_state]]</code>
  
 
== Related terms ==
 
== Related terms ==

Revision as of 14:26, 9 May 2023

aws_instance (ref)

Examples

Examples

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

 tags = {
   Name = "your_name_here"
 }
}

See also: AWS instance example with aws_ami lookup
resource "aws_instance" "MYexample" {
 ami           = "ami-08d70e59c07c61a3a"
 instance_type = "t2.micro"
 associate_public_ip_address = "yes" 
  

 tags = {
   Name = "your_name_here"
 }
}


Example for terraform import:

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

Outputs

output "instance_ip_addr" {
  value = aws_instance.your_server.private_ip
}

aws_instance arguments

Related terms

See also

  • https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#key_name
  • Advertising: