Terraform AWS Provider: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
=External= | |||
* https://learn.hashicorp.com/terraform/getting-started/build#configuration | |||
=Internal= | =Internal= | ||
* [[Terraform_Concepts#AWS|Terraform Concepts]] | * [[Terraform_Concepts#AWS|Terraform Concepts]] |
Revision as of 21:26, 13 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"
}