This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Terraform github.com/DFE-Digital/terraform-azurerm-container-a…
…pps-hosting to v1.10.1 (#810) * Update Terraform github.com/DFE-Digital/terraform-azurerm-container-apps-hosting to v1.10.1 * Updated readme * Set default rate limit duration to 5 minutes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ash Davies <3853061+DrizzlyOwl@users.noreply.github.com>
- Loading branch information
1 parent
06e428f
commit b0bdde7
Showing
4 changed files
with
74 additions
and
65 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,53 @@ | ||
locals { | ||
environment = var.environment | ||
project_name = var.project_name | ||
azure_location = var.azure_location | ||
tags = var.tags | ||
virtual_network_address_space = var.virtual_network_address_space | ||
enable_container_registry = var.enable_container_registry | ||
registry_admin_enabled = var.registry_admin_enabled | ||
registry_use_managed_identity = var.registry_use_managed_identity | ||
registry_managed_identity_assign_role = var.registry_managed_identity_assign_role | ||
registry_server = var.registry_server | ||
image_name = var.image_name | ||
container_command = var.container_command | ||
container_secret_environment_variables = var.container_secret_environment_variables | ||
container_max_replicas = var.container_max_replicas | ||
container_scale_http_concurrency = var.container_scale_http_concurrency | ||
enable_event_hub = var.enable_event_hub | ||
enable_logstash_consumer = var.enable_logstash_consumer | ||
eventhub_export_log_analytics_table_names = var.eventhub_export_log_analytics_table_names | ||
enable_dns_zone = var.enable_dns_zone | ||
dns_zone_domain_name = var.dns_zone_domain_name | ||
dns_ns_records = var.dns_ns_records | ||
dns_txt_records = var.dns_txt_records | ||
dns_mx_records = var.dns_mx_records | ||
enable_cdn_frontdoor = var.enable_cdn_frontdoor | ||
container_apps_allow_ips_inbound = var.container_apps_allow_ips_inbound | ||
cdn_frontdoor_enable_rate_limiting = var.cdn_frontdoor_enable_rate_limiting | ||
cdn_frontdoor_rate_limiting_threshold = var.cdn_frontdoor_rate_limiting_threshold | ||
cdn_frontdoor_waf_custom_rules = var.cdn_frontdoor_waf_custom_rules | ||
cdn_frontdoor_host_add_response_headers = var.cdn_frontdoor_host_add_response_headers | ||
cdn_frontdoor_custom_domains = var.cdn_frontdoor_custom_domains | ||
cdn_frontdoor_host_redirects = var.cdn_frontdoor_host_redirects | ||
cdn_frontdoor_origin_fqdn_override = var.cdn_frontdoor_origin_fqdn_override | ||
cdn_frontdoor_origin_host_header_override = var.cdn_frontdoor_origin_host_header_override | ||
cdn_frontdoor_forwarding_protocol = var.cdn_frontdoor_forwarding_protocol | ||
cdn_frontdoor_health_probe_protocol = var.cdn_frontdoor_health_probe_protocol | ||
enable_cdn_frontdoor_health_probe = var.enable_cdn_frontdoor_health_probe | ||
key_vault_access_ipv4 = var.key_vault_access_ipv4 | ||
tfvars_filename = var.tfvars_filename | ||
container_health_probe_path = var.container_health_probe_path | ||
cdn_frontdoor_health_probe_path = var.cdn_frontdoor_health_probe_path | ||
enable_monitoring = var.enable_monitoring | ||
monitor_email_receivers = var.monitor_email_receivers | ||
monitor_endpoint_healthcheck = var.monitor_endpoint_healthcheck | ||
existing_logic_app_workflow = var.existing_logic_app_workflow | ||
existing_network_watcher_name = var.existing_network_watcher_name | ||
existing_network_watcher_resource_group_name = var.existing_network_watcher_resource_group_name | ||
statuscake_monitored_resource_addresses = var.statuscake_monitored_resource_addresses | ||
statuscake_contact_group_name = var.statuscake_contact_group_name | ||
statuscake_contact_group_integrations = var.statuscake_contact_group_integrations | ||
statuscake_contact_group_email_addresses = var.statuscake_contact_group_email_addresses | ||
environment = var.environment | ||
project_name = var.project_name | ||
azure_location = var.azure_location | ||
tags = var.tags | ||
virtual_network_address_space = var.virtual_network_address_space | ||
enable_container_registry = var.enable_container_registry | ||
registry_admin_enabled = var.registry_admin_enabled | ||
registry_use_managed_identity = var.registry_use_managed_identity | ||
registry_managed_identity_assign_role = var.registry_managed_identity_assign_role | ||
registry_server = var.registry_server | ||
image_name = var.image_name | ||
container_command = var.container_command | ||
container_secret_environment_variables = var.container_secret_environment_variables | ||
container_max_replicas = var.container_max_replicas | ||
container_scale_http_concurrency = var.container_scale_http_concurrency | ||
enable_event_hub = var.enable_event_hub | ||
enable_logstash_consumer = var.enable_logstash_consumer | ||
eventhub_export_log_analytics_table_names = var.eventhub_export_log_analytics_table_names | ||
enable_dns_zone = var.enable_dns_zone | ||
dns_zone_domain_name = var.dns_zone_domain_name | ||
dns_ns_records = var.dns_ns_records | ||
dns_txt_records = var.dns_txt_records | ||
dns_mx_records = var.dns_mx_records | ||
enable_cdn_frontdoor = var.enable_cdn_frontdoor | ||
container_apps_allow_ips_inbound = var.container_apps_allow_ips_inbound | ||
cdn_frontdoor_enable_rate_limiting = var.cdn_frontdoor_enable_rate_limiting | ||
cdn_frontdoor_rate_limiting_threshold = var.cdn_frontdoor_rate_limiting_threshold | ||
cdn_frontdoor_rate_limiting_duration_in_minutes = var.cdn_frontdoor_rate_limiting_duration_in_minutes | ||
cdn_frontdoor_waf_custom_rules = var.cdn_frontdoor_waf_custom_rules | ||
cdn_frontdoor_host_add_response_headers = var.cdn_frontdoor_host_add_response_headers | ||
cdn_frontdoor_custom_domains = var.cdn_frontdoor_custom_domains | ||
cdn_frontdoor_host_redirects = var.cdn_frontdoor_host_redirects | ||
cdn_frontdoor_origin_fqdn_override = var.cdn_frontdoor_origin_fqdn_override | ||
cdn_frontdoor_origin_host_header_override = var.cdn_frontdoor_origin_host_header_override | ||
cdn_frontdoor_forwarding_protocol = var.cdn_frontdoor_forwarding_protocol | ||
cdn_frontdoor_health_probe_protocol = var.cdn_frontdoor_health_probe_protocol | ||
enable_cdn_frontdoor_health_probe = var.enable_cdn_frontdoor_health_probe | ||
key_vault_access_ipv4 = var.key_vault_access_ipv4 | ||
tfvars_filename = var.tfvars_filename | ||
container_health_probe_path = var.container_health_probe_path | ||
cdn_frontdoor_health_probe_path = var.cdn_frontdoor_health_probe_path | ||
enable_monitoring = var.enable_monitoring | ||
monitor_email_receivers = var.monitor_email_receivers | ||
monitor_endpoint_healthcheck = var.monitor_endpoint_healthcheck | ||
existing_logic_app_workflow = var.existing_logic_app_workflow | ||
existing_network_watcher_name = var.existing_network_watcher_name | ||
existing_network_watcher_resource_group_name = var.existing_network_watcher_resource_group_name | ||
statuscake_monitored_resource_addresses = var.statuscake_monitored_resource_addresses | ||
statuscake_contact_group_name = var.statuscake_contact_group_name | ||
statuscake_contact_group_integrations = var.statuscake_contact_group_integrations | ||
statuscake_contact_group_email_addresses = var.statuscake_contact_group_email_addresses | ||
} |
This file contains 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