Difference between revisions of "AWS instance example: main.tf"
Jump to navigation
Jump to search
(Created page with " provider "aws" { region = "us-west-2" profile = "your_profile_name_here" } resource "aws_instance" "example" { ami = "ami-08d70e59c07c61a3a...") |
|||
Line 1: | Line 1: | ||
provider "[[aws]]" { | provider "[[aws]]" { | ||
− | region = "us-west-2" | + | region = "[[us-west-2]]" |
profile = "your_profile_name_here" | profile = "your_profile_name_here" | ||
} | } | ||
− | resource "aws_instance" " | + | resource "[[aws_instance]]" "MYexample" { |
− | [[ami]] = "ami-08d70e59c07c61a3a" | + | [[ami]] = "[[ami]]-08d70e59c07c61a3a" |
− | instance_type = "t2.micro" | + | instance_type = "[[t2.micro]]" |
tags = { | tags = { |
Revision as of 08:31, 2 September 2021
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" } }
See also
- Terraform examples,
main.tf
, Aws instance example: main.tf,terraform apply
- Terraform, OpenTofu, Terrakube.org, Installation, Terraform AWS, Terraform GCP, Terraform commands, Terraform Cloud, Terraform Enterprise (TFE), HCL, HIL, meta-arguments, providers, modules, resource, provisioners, data sources, backends: remote backends, examples, configuration files, state files, variables, types, Terraform Registry, conditionals:
depends_on
, functions, Blocks, dynamic blocks, errors, Terragrunt, Terraformer, Terratest, Terraform certifications, Terraform map type, Terraform Associate, Terraform: list type,TF_VAR_, TF_LOG
, Terraform provider versioning, Terraform Style Conventions, Required version, Terraform plugin, Terraform Named Values, tags, Changelog,tfsec, tflint
, Operators, Expressions:for, splat
, Debugging, Namespaces, Terraform Landing Zones, CDKTF, Atmos
Advertising: