Skip to content

Commit

Permalink
upload env definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
jaescalo committed May 27, 2024
1 parent 36858d2 commit 4f842b4
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@
crash.log
crash.*.log

# Exclude all .tfvars files, which are likely to contain sensitive data, such as
# password, private keys, and other secrets. These should not be part of version
# control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
*.tfvars
*.tfvars.json

# Ignore override files as they are usually used to override resources locally and so
# are not checked in
override.tf
Expand All @@ -32,3 +25,10 @@ override.tf.json
# Ignore CLI configuration files
.terraformrc
terraform.rc

__pycache__
*.pyc
.gitignore
.DS_store
backend
.env
7 changes: 7 additions & 0 deletions environments/dev.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
property_name = "github-workflow.dev.tf-demo.download-delivery"
hostname = "github-workflow.dev.tf-demo.com"
origin_hostname = "dev-origin.github-workflow.tf-demo.com"
edge_hostname = "jaescalo.test.edgekey.net"
cp_code_name = "Download Delivery Demo CP Code"
cam_key_id = "11727"
emails = ["[email protected]"]
7 changes: 7 additions & 0 deletions environments/prod.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
property_name = "github-workflow.prod.tf-demo.download-delivery"
hostname = "github-workflow.prod.tf-demo.com"
origin_hostname = "prod-origin.github-workflow.tf-demo.com"
edge_hostname = "jaescalo.test.edgekey.net"
cp_code_name = "Download Delivery Demo CP Code"
cam_key_id = "11727"
emails = ["[email protected]"]
7 changes: 7 additions & 0 deletions environments/qa.tfvars
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
property_name = "github-workflow.qa.tf-demo.download-delivery"
hostname = "github-workflow.qa.tf-demo.com"
origin_hostname = "qa-origin.github-workflow.tf-demo.com"
edge_hostname = "jaescalo.test.edgekey.net"
cp_code_name = "Download Delivery Demo CP Code"
cam_key_id = "11727"
emails = ["[email protected]"]

0 comments on commit 4f842b4

Please sign in to comment.