diff --git a/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/ansible.mdx b/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/ansible.mdx index 21067d1a2bc49a..a91b67487161e3 100644 --- a/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/ansible.mdx +++ b/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/ansible.mdx @@ -95,6 +95,7 @@ The following configuration will modify settings in your Cloudflare account. resource "cloudflare_zero_trust_tunnel_cloudflared" "gcp_tunnel" { account_id = var.cloudflare_account_id name = "Ansible GCP tunnel" + config_src = "cloudflare" } # Reads the token used to run the tunnel on the server. @@ -146,7 +147,7 @@ The following configuration defines the specifications for the GCP virtual machi ```txt # Selects the OS for the GCP VM. data "google_compute_image" "image" { - family = "ubuntu-minimal-2004-lts" + family = "ubuntu-2204-lts" project = "ubuntu-os-cloud" } diff --git a/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/terraform.mdx b/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/terraform.mdx index 846ad696389b4c..75ac5025183651 100644 --- a/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/terraform.mdx +++ b/src/content/docs/cloudflare-one/connections/connect-networks/deployment-guides/terraform.mdx @@ -138,6 +138,7 @@ The following configuration will modify settings in your Cloudflare account. resource "cloudflare_zero_trust_tunnel_cloudflared" "gcp_tunnel" { account_id = var.cloudflare_account_id name = "Terraform GCP tunnel" + config_src = "cloudflare" } # 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. ingress = [ { hostname = "http_app.${var.cloudflare_zone}" - service = "http://httpbin:8080" + service = "http://httpbin:80" }, { service = "http_status:404" @@ -247,7 +248,7 @@ The following configuration will modify settings in your Cloudflare account. config { ingress_rule { hostname = "${cloudflare_record.http_app.hostname}" - service = "http://httpbin:8080" + service = "http://httpbin:80" } ingress_rule { service = "http_status:404" @@ -305,7 +306,7 @@ The following configuration defines the specifications for the GCP virtual machi ```tf # OS the server will use data "google_compute_image" "image" { - family = "ubuntu-minimal-2004-lts" + family = "ubuntu-2204-lts" project = "ubuntu-os-cloud" } @@ -347,7 +348,7 @@ The following configuration defines the specifications for the GCP virtual machi ```tf # OS the server will use data "google_compute_image" "image" { - family = "ubuntu-minimal-2004-lts" + family = "ubuntu-2204-lts" project = "ubuntu-os-cloud" } diff --git a/src/content/partials/cloudflare-one/terraform/providers-v5.mdx b/src/content/partials/cloudflare-one/terraform/providers-v5.mdx index 81d52b2e82d281..cda294b702f2e1 100644 --- a/src/content/partials/cloudflare-one/terraform/providers-v5.mdx +++ b/src/content/partials/cloudflare-one/terraform/providers-v5.mdx @@ -7,7 +7,7 @@ terraform { required_providers { cloudflare = { source = "cloudflare/cloudflare" - version = ">= 5.3.0" + version = ">= 5.8.2" } google = { source = "hashicorp/google"