Difference between revisions of "Terraform: resource"

From wikieduonline
Jump to navigation Jump to search
Line 11: Line 11:
 
   }
 
   }
  
 +
== Resources ==
 
* <code>[[Terrafrom resource: aws_instance|aws_instance]]</code>
 
* <code>[[Terrafrom resource: aws_instance|aws_instance]]</code>
 
* [[Terraform resource: aws_key_pair]]
 
* [[Terraform resource: aws_key_pair]]

Revision as of 09:30, 5 September 2021


AWS provider

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

  tags = {
    Name = "ExampleAppServerInstance"
  }

Resources

Related terms

See also

Advertising: