diff --git a/docs/data-sources/infrastructure_access_targets.md b/docs/data-sources/infrastructure_access_targets.md index ae4edfb631..982affd5d1 100644 --- a/docs/data-sources/infrastructure_access_targets.md +++ b/docs/data-sources/infrastructure_access_targets.md @@ -15,7 +15,7 @@ Use this data source to retrieve all Infrastructure Access Targets. data "cloudflare_infrastructure_access_targets" "example" { account_id = "f037e56e89293a057740de681ac9abbe" hostname_contains = "example" - ipv4 = "210.26.29.230" + ipv4 = "198.51.100.1" } # output the list of targets the data source contains diff --git a/docs/resources/access_application.md b/docs/resources/access_application.md index 073d8c8da4..e592ed5379 100644 --- a/docs/resources/access_application.md +++ b/docs/resources/access_application.md @@ -56,7 +56,7 @@ resource "cloudflare_access_application" "staging_app" { # Infrastructure application configuration resource "cloudflare_zero_trust_access_application" "infra-app-example" { - account_id = "0da42c8d2132a9ddaf714f9e7c920711" + account_id = "f037e56e89293a057740de681ac9abbe" name = "infra-app" type = "infrastructure" diff --git a/docs/resources/access_policy.md b/docs/resources/access_policy.md index cadab6add9..cf81acf688 100644 --- a/docs/resources/access_policy.md +++ b/docs/resources/access_policy.md @@ -58,7 +58,7 @@ resource "cloudflare_access_policy" "test_policy" { # Access policy for an infrastructure application resource "cloudflare_access_policy" "infra-app-example-allow" { application_id = cloudflare_zero_trust_access_application.infra-app-example.id - account_id = "0da42c8d2132a9ddaf714f9e7c920711" + account_id = "f037e56e89293a057740de681ac9abbe" name = "infra-app-example-allow" decision = "allow" precedence = 1 @@ -76,7 +76,7 @@ resource "cloudflare_access_policy" "infra-app-example-allow" { # Infrastructure application configuration for infra-app-example-allow resource "cloudflare_zero_trust_access_application" "infra-app-example" { - account_id = "0da42c8d2132a9ddaf714f9e7c920711" + account_id = "f037e56e89293a057740de681ac9abbe" name = "infra-app" type = "infrastructure" diff --git a/docs/resources/infrastructure_access_target.md b/docs/resources/infrastructure_access_target.md index 6c617e1631..17091757ed 100644 --- a/docs/resources/infrastructure_access_target.md +++ b/docs/resources/infrastructure_access_target.md @@ -17,11 +17,11 @@ resource "cloudflare_infrastructure_access_target" "example" { hostname = "example-target" ip = { ipv4 = { - ip_addr = "210.26.29.230" + ip_addr = "198.51.100.1" virtual_network_id = "238dccd1-149b-463d-8228-560ab83a54fd" } ipv6 = { - ip_addr = "24c0:64e8:f0b4:8dbf:7104:72b0:ef8f:f5e0" + ip_addr = "2001:db8::" virtual_network_id = "238dccd1-149b-463d-8228-560ab83a54fd" } } @@ -32,7 +32,7 @@ resource "cloudflare_infrastructure_access_target" "ipv4_only_example" { hostname = "example-ipv4-only" ip = { ipv4 = { - ip_addr = "210.26.29.230" + ip_addr = "198.51.100.1" virtual_network_id = "238dccd1-149b-463d-8228-560ab83a54fd" } } diff --git a/examples/data-sources/cloudflare_infrastructure_access_targets/data-source.tf b/examples/data-sources/cloudflare_infrastructure_access_targets/data-source.tf index d9ee8eaee0..04c2654afe 100644 --- a/examples/data-sources/cloudflare_infrastructure_access_targets/data-source.tf +++ b/examples/data-sources/cloudflare_infrastructure_access_targets/data-source.tf @@ -1,7 +1,7 @@ data "cloudflare_infrastructure_access_targets" "example" { account_id = "f037e56e89293a057740de681ac9abbe" hostname_contains = "example" - ipv4 = "210.26.29.230" + ipv4 = "198.51.100.1" } # output the list of targets the data source contains diff --git a/examples/resources/cloudflare_access_application/resource.tf b/examples/resources/cloudflare_access_application/resource.tf index 425b04edf4..db6539320c 100644 --- a/examples/resources/cloudflare_access_application/resource.tf +++ b/examples/resources/cloudflare_access_application/resource.tf @@ -32,7 +32,7 @@ resource "cloudflare_access_application" "staging_app" { # Infrastructure application configuration resource "cloudflare_zero_trust_access_application" "infra-app-example" { - account_id = "0da42c8d2132a9ddaf714f9e7c920711" + account_id = "f037e56e89293a057740de681ac9abbe" name = "infra-app" type = "infrastructure" diff --git a/examples/resources/cloudflare_access_policy/resource.tf b/examples/resources/cloudflare_access_policy/resource.tf index 8729232c35..4a3d00850f 100644 --- a/examples/resources/cloudflare_access_policy/resource.tf +++ b/examples/resources/cloudflare_access_policy/resource.tf @@ -32,7 +32,7 @@ resource "cloudflare_access_policy" "test_policy" { # Access policy for an infrastructure application resource "cloudflare_access_policy" "infra-app-example-allow" { application_id = cloudflare_zero_trust_access_application.infra-app-example.id - account_id = "0da42c8d2132a9ddaf714f9e7c920711" + account_id = "f037e56e89293a057740de681ac9abbe" name = "infra-app-example-allow" decision = "allow" precedence = 1 @@ -50,7 +50,7 @@ resource "cloudflare_access_policy" "infra-app-example-allow" { # Infrastructure application configuration for infra-app-example-allow resource "cloudflare_zero_trust_access_application" "infra-app-example" { - account_id = "0da42c8d2132a9ddaf714f9e7c920711" + account_id = "f037e56e89293a057740de681ac9abbe" name = "infra-app" type = "infrastructure" diff --git a/examples/resources/cloudflare_infrastructure_access_target/resource.tf b/examples/resources/cloudflare_infrastructure_access_target/resource.tf index 1a4c85819e..ab1ed1303f 100644 --- a/examples/resources/cloudflare_infrastructure_access_target/resource.tf +++ b/examples/resources/cloudflare_infrastructure_access_target/resource.tf @@ -3,11 +3,11 @@ resource "cloudflare_infrastructure_access_target" "example" { hostname = "example-target" ip = { ipv4 = { - ip_addr = "210.26.29.230" + ip_addr = "198.51.100.1" virtual_network_id = "238dccd1-149b-463d-8228-560ab83a54fd" } ipv6 = { - ip_addr = "24c0:64e8:f0b4:8dbf:7104:72b0:ef8f:f5e0" + ip_addr = "2001:db8::" virtual_network_id = "238dccd1-149b-463d-8228-560ab83a54fd" } } @@ -18,7 +18,7 @@ resource "cloudflare_infrastructure_access_target" "ipv4_only_example" { hostname = "example-ipv4-only" ip = { ipv4 = { - ip_addr = "210.26.29.230" + ip_addr = "198.51.100.1" virtual_network_id = "238dccd1-149b-463d-8228-560ab83a54fd" } }