@@ -138,6 +138,7 @@ The following configuration will modify settings in your Cloudflare account.
138138 resource "cloudflare_zero_trust_tunnel_cloudflared" "gcp_tunnel" {
139139 account_id = var.cloudflare_account_id
140140 name = "Terraform GCP tunnel"
141+ config_src = "cloudflare"
141142 }
142143
143144 # Reads the token used to run the tunnel on the server.
@@ -164,7 +165,7 @@ The following configuration will modify settings in your Cloudflare account.
164165 ingress = [
165166 {
166167 hostname = "http_app.${var.cloudflare_zone}"
167- service = "http://httpbin:8080 "
168+ service = "http://httpbin:80 "
168169 },
169170 {
170171 service = "http_status:404"
@@ -247,7 +248,7 @@ The following configuration will modify settings in your Cloudflare account.
247248 config {
248249 ingress_rule {
249250 hostname = "${cloudflare_record.http_app.hostname}"
250- service = "http://httpbin:8080 "
251+ service = "http://httpbin:80 "
251252 }
252253 ingress_rule {
253254 service = "http_status:404"
@@ -305,7 +306,7 @@ The following configuration defines the specifications for the GCP virtual machi
305306 ``` tf
306307 # OS the server will use
307308 data "google_compute_image" "image" {
308- family = "ubuntu-minimal-2004 -lts"
309+ family = "ubuntu-2204 -lts"
309310 project = "ubuntu-os-cloud"
310311 }
311312
@@ -347,7 +348,7 @@ The following configuration defines the specifications for the GCP virtual machi
347348 ``` tf
348349 # OS the server will use
349350 data "google_compute_image" "image" {
350- family = "ubuntu-minimal-2004 -lts"
351+ family = "ubuntu-2204 -lts"
351352 project = "ubuntu-os-cloud"
352353 }
353354
0 commit comments