Remove references to CoreDNS from Squid module

This commit is contained in:
Julio Castillo
2020-04-06 20:13:21 +02:00
parent c6b14860f8
commit 4850748055
2 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ write_files:
[Service]
Environment="HOME=/home/squid"
ExecStartPre=/usr/bin/docker-credential-gcr configure-docker
ExecStart=/usr/bin/docker run --rm --name=coredns \
ExecStart=/usr/bin/docker run --rm --name=squid \
--log-driver=gcplogs --network host \
-v /etc/squid:/etc/squid \
gcr.io/pso-cft-fabric/squid:0.10

View File

@@ -21,13 +21,13 @@ variable "cloud_config" {
}
variable "config_variables" {
description = "Additional variables used to render the cloud-config and CoreDNS templates."
description = "Additional variables used to render the cloud-config and Squid templates."
# type = map(any)
default = {}
}
variable "squid_config" {
description = "CoreDNS configuration path, if null default will be used."
description = "Squid configuration path, if null default will be used."
type = string
default = null
}