diff --git a/examples/api-token/main.tf b/examples/api-token/main.tf index 7ebb3cc..6b5af0c 100644 --- a/examples/api-token/main.tf +++ b/examples/api-token/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/examples/arm-based-machine-type/main.tf b/examples/arm-based-machine-type/main.tf index b2beb4b..7d79829 100644 --- a/examples/arm-based-machine-type/main.tf +++ b/examples/arm-based-machine-type/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" image_family = "fortigate-arm64-72-payg" machine_type = "t2a-standard-4" diff --git a/examples/byol-existing-subnets/main.tf b/examples/byol-existing-subnets/main.tf index 4a529e6..3bb35c4 100644 --- a/examples/byol-existing-subnets/main.tf +++ b/examples/byol-existing-subnets/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" prefix = "fgt-example-byol" region = "us-central1" diff --git a/examples/gvnic-custom-image/main.tf b/examples/gvnic-custom-image/main.tf index 99bdc6f..61ede90 100644 --- a/examples/gvnic-custom-image/main.tf +++ b/examples/gvnic-custom-image/main.tf @@ -8,7 +8,7 @@ resource "google_compute_image" "fgt_724_gvnic" { } module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/examples/licensing-byol/main.tf b/examples/licensing-byol/main.tf index 3d11ef5..2ee5c0b 100644 --- a/examples/licensing-byol/main.tf +++ b/examples/licensing-byol/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/examples/licensing-flex/main.tf b/examples/licensing-flex/main.tf index 378c5fc..b1949aa 100644 --- a/examples/licensing-flex/main.tf +++ b/examples/licensing-flex/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/examples/licensing-payg/main.tf b/examples/licensing-payg/main.tf index 4a6af0e..805d106 100644 --- a/examples/licensing-payg/main.tf +++ b/examples/licensing-payg/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/examples/minimal/main.tf b/examples/minimal/main.tf index 4decf14..2dadb63 100644 --- a/examples/minimal/main.tf +++ b/examples/minimal/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/examples/payg-new-subnets/main.tf b/examples/payg-new-subnets/main.tf index e7b3770..cb4701b 100644 --- a/examples/payg-new-subnets/main.tf +++ b/examples/payg-new-subnets/main.tf @@ -33,7 +33,7 @@ resource google_compute_subnetwork "demo" { # deploy the FortiGates module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" prefix = "fgt-example-payg" region = var.region diff --git a/examples/public-addresses-elb-frontend/main.tf b/examples/public-addresses-elb-frontend/main.tf index 9f748b5..81b16f6 100644 --- a/examples/public-addresses-elb-frontend/main.tf +++ b/examples/public-addresses-elb-frontend/main.tf @@ -1,5 +1,5 @@ module "fgt_ha" { - source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb?ref=v1.0.0" + source = "git::github.com/fortinet/terraform-google-fgt-ha-ap-lb" region = "us-central1" subnets = [ "external", "internal", "hasync", "mgmt" ] diff --git a/main.tf b/main.tf index 94b0b78..3e9a647 100644 --- a/main.tf +++ b/main.tf @@ -252,7 +252,7 @@ resource "google_secret_manager_secret" "api-secret" { secret_id = var.api_token_secret_name replication { - automatic = true + auto {} } }