Terraform AWS Provider: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Terraform Concepts")
 
No edit summary
Line 1: Line 1:
=Internal=
=Internal=
* [[Terraform_Concepts#AWS|Terraform Concepts]]
* [[Terraform_Concepts#AWS|Terraform Concepts]]
=Example=
<syntaxhighlight lang='json'>
provider "aws" {
  profile = "default"
  regioin = "us-west-2"
}
resource "aws_instance" "terraform-test-01" {
  ami          = "ami-06faba49dddaecfb6"
  instance_type = "m5.4xlarge"
}
</syntaxhighlight>

Revision as of 20:56, 13 November 2019

Internal

Example

provider "aws" {

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

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

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