Add demo terraform environment

This commit is contained in:
Ryan Ahearn
2022-11-02 09:08:08 -04:00
parent 90b5261821
commit 7ee1945893
8 changed files with 89 additions and 6 deletions
+17
View File
@@ -0,0 +1,17 @@
terraform {
required_version = "~> 1.0"
required_providers {
cloudfoundry = {
source = "cloudfoundry-community/cloudfoundry"
version = "0.15.5"
}
}
backend "s3" {
bucket = "TKTK"
key = "api.tfstate.prod"
encrypt = "true"
region = "us-gov-west-1"
profile = "notify-terraform-backend"
}
}