Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set terraform to use the prod contentful environment for the Load-Test #393

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ No modules.
| <a name="input_autoscale_name"></a> [autoscale\_name](#input\_autoscale\_name) | Name of autoscale settings | `map(string)` | <pre>{<br> "Dev": "s185d01-app-autoscale",<br> "Load-Test": "s185d03-app-autoscale",<br> "Pre-Prod": "s185t01-app-autoscale",<br> "Prod": "s185p01-app-autoscale",<br> "Test": "s185d02-app-autoscale"<br>}</pre> | no |
| <a name="input_backend_address_pool_name"></a> [backend\_address\_pool\_name](#input\_backend\_address\_pool\_name) | Name of Backend Address Pool | `map(string)` | <pre>{<br> "Dev": "s185d01-chidrens-social-care-cpd-bep",<br> "Load-Test": "s185d03-chidrens-social-care-cpd-bep",<br> "Pre-Prod": "s185t01-chidrens-social-care-cpd-bep",<br> "Prod": "s185p01-chidrens-social-care-cpd-bep",<br> "Test": "s185d02-chidrens-social-care-cpd-bep"<br>}</pre> | no |
| <a name="input_cpd_clarity"></a> [cpd\_clarity](#input\_cpd\_clarity) | MS Clarity Secret | `string` | n/a | yes |
| <a name="input_cpd_contentful_env"></a> [cpd\_contentful\_env](#input\_cpd\_contentful\_env) | Contentful Environment Name | `map(string)` | <pre>{<br> "Dev": "dev",<br> "Load-Test": "test",<br> "Pre-Prod": "prod",<br> "Prod": "prod",<br> "Test": "test"<br>}</pre> | no |
| <a name="input_cpd_contentful_env"></a> [cpd\_contentful\_env](#input\_cpd\_contentful\_env) | Contentful Environment Name | `map(string)` | <pre>{<br> "Dev": "dev",<br> "Load-Test": "prod",<br> "Pre-Prod": "prod",<br> "Prod": "prod",<br> "Test": "test"<br>}</pre> | no |
| <a name="input_cpd_delivery_key"></a> [cpd\_delivery\_key](#input\_cpd\_delivery\_key) | Contentful Delivery Key | `string` | n/a | yes |
| <a name="input_cpd_feature_polling_interval"></a> [cpd\_feature\_polling\_interval](#input\_cpd\_feature\_polling\_interval) | Feature polling interval | `number` | n/a | yes |
| <a name="input_cpd_gf_image_tag"></a> [cpd\_gf\_image\_tag](#input\_cpd\_gf\_image\_tag) | Grafana Docker image tag to use | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion Terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ variable "cpd_contentful_env" {
default = {
Dev = "dev"
Test = "test"
Load-Test = "test"
Load-Test = "prod"
Pre-Prod = "prod"
Prod = "prod"
}
Expand Down
Loading