Terraform AWS Provider: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 20: Line 20:
}
}
</syntaxhighlight>
</syntaxhighlight>
=Concepts=
==Authentication==
{{External|https://www.terraform.io/docs/providers/aws/index.html#authentication}}


=Operations=
=Operations=
{{Internal|Terraform AWS Operations|Terraform AWS Operations}}
{{Internal|Terraform AWS Operations|Terraform AWS Operations}}

Revision as of 03:13, 19 November 2019

External

Internal

Example

provider "aws" {

  profile = "default"
  region = "us-west-2"
}

resource "aws_instance" "terraform-test-01" {

  ami           = "ami-06faba49dddaecfb6"
  instance_type = "m5.4xlarge"
}

Concepts

Authentication

https://www.terraform.io/docs/providers/aws/index.html#authentication

Operations

Terraform AWS Operations