Difference between revisions of "Terraform: resource"

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

Revision as of 20:47, 22 September 2022

AWS provider

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

  tags = {
    Name = "ExampleAppServerInstance"
  }

Resources

Related terms

See also

Advertising: