Terraform AWS Provider: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:


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



Revision as of 21:14, 13 November 2019

Internal

Example

provider "aws" {

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

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

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

Operations

Terraform AWS Operations