Skip to content

Commit

Permalink
add trusted_proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
Annie Hedgpeth committed Oct 27, 2023
1 parent bf86007 commit ace5a50
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,12 @@ module "docker_compose_config" {
azure_account_name = local.object_storage.storage_account_name
azure_container = local.object_storage.storage_account_container_name

http_port = var.http_port
https_port = var.https_port
http_proxy = var.proxy_ip != null ? "${var.proxy_ip}:${var.proxy_port}" : null
https_proxy = var.proxy_ip != null ? "${var.proxy_ip}:${var.proxy_port}" : null
no_proxy = local.no_proxy
http_port = var.http_port
https_port = var.https_port
http_proxy = var.proxy_ip != null ? "${var.proxy_ip}:${var.proxy_port}" : null
https_proxy = var.proxy_ip != null ? "${var.proxy_ip}:${var.proxy_port}" : null
no_proxy = local.no_proxy
trusted_proxies = local.trusted_proxies

redis_host = local.redis.hostname
redis_user = ""
Expand Down

0 comments on commit ace5a50

Please sign in to comment.