Created
December 22, 2020 09:58
-
-
Save neilkuan/7d828279dd9ef3e5cfda208b4b988793 to your computer and use it in GitHub Desktop.
ORG_NAME_ON_TERRAFORM_CLOUD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| backend "remote" { | |
| organization = "ORG_NAME_ON_TERRAFORM_CLOUD" | |
| workspaces { | |
| name = "WORKSPACES_NAME_ON_TERRAFORM_CLPUD" | |
| } | |
| } | |
| } | |
| provider "aws" { | |
| region = "us-west-2" | |
| } | |
| resource "aws_instance" "demo" { | |
| ami = "ami-0e472933a1395e172" | |
| instance_type = "t3.micro" | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
replace
ORG_NAME_ON_TERRAFORM_CLOUDto yourORG_NAME_ON_TERRAFORM_CLOUDreplace
WORKSPACES_NAME_ON_TERRAFORM_CLPUDto yourWORKSPACES_NAME_ON_TERRAFORM_CLPUD