Terraform AWS Provider

From NovaOrdis Knowledge Base
Revision as of 21:27, 13 November 2019 by Ovidiu (talk | contribs) (→‎External)
Jump to navigation Jump to search

External

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