From 4f842b41fc998890e9f6b3d86631d469c03ab7fd Mon Sep 17 00:00:00 2001 From: Jaime Escalona Date: Mon, 27 May 2024 16:05:49 -0600 Subject: [PATCH] upload env definitions --- .gitignore | 14 +++++++------- environments/dev.tfvars | 7 +++++++ environments/prod.tfvars | 7 +++++++ environments/qa.tfvars | 7 +++++++ 4 files changed, 28 insertions(+), 7 deletions(-) create mode 100644 environments/dev.tfvars create mode 100644 environments/prod.tfvars create mode 100644 environments/qa.tfvars diff --git a/.gitignore b/.gitignore index 9b8a46e..b3b790a 100644 --- a/.gitignore +++ b/.gitignore @@ -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 @@ -32,3 +25,10 @@ override.tf.json # Ignore CLI configuration files .terraformrc terraform.rc + +__pycache__ +*.pyc +.gitignore +.DS_store +backend +.env \ No newline at end of file diff --git a/environments/dev.tfvars b/environments/dev.tfvars new file mode 100644 index 0000000..8129666 --- /dev/null +++ b/environments/dev.tfvars @@ -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 = ["dev-team@noreply.com"] \ No newline at end of file diff --git a/environments/prod.tfvars b/environments/prod.tfvars new file mode 100644 index 0000000..5d33f51 --- /dev/null +++ b/environments/prod.tfvars @@ -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 = ["prod-team@noreply.com"] \ No newline at end of file diff --git a/environments/qa.tfvars b/environments/qa.tfvars new file mode 100644 index 0000000..c3065de --- /dev/null +++ b/environments/qa.tfvars @@ -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 = ["qa-team@noreply.com"] \ No newline at end of file