diff --git a/fast/stages/3-network-security/README.md b/fast/stages/3-network-security/README.md
index 4dd0fbec6e..9e5cf2ad22 100644
--- a/fast/stages/3-network-security/README.md
+++ b/fast/stages/3-network-security/README.md
@@ -161,7 +161,7 @@ ngfw_enterprise_config = {
| [vpc_self_links](variables-fast.tf#L72) | Self link for the shared VPC. | object({…})
| ✓ | | 2-networking
|
| [factories_config](variables.tf#L17) | Configuration for network resource factories. | object({…})
| | {…}
| |
| [host_project_ids](variables-fast.tf#L41) | Host project for the shared VPC. | object({…})
| | {}
| 2-networking
|
-| [ngfw_enterprise_config](variables.tf#L35) | NGFW Enterprise configuration. | object({…})
| | {}
| |
+| [ngfw_enterprise_config](variables.tf#L35) | NGFW Enterprise configuration. | object({…})
| | {…}
| |
## Outputs
diff --git a/fast/stages/3-network-security/variables.tf b/fast/stages/3-network-security/variables.tf
index cd1fccbc19..d291577fc7 100644
--- a/fast/stages/3-network-security/variables.tf
+++ b/fast/stages/3-network-security/variables.tf
@@ -35,9 +35,15 @@ variable "factories_config" {
variable "ngfw_enterprise_config" {
description = "NGFW Enterprise configuration."
type = object({
- endpoint_zones = optional(list(string), ["europe-west1-b", "europe-west1-c", "europe-west1-d"])
+ endpoint_zones = list(string)
quota_project_id = optional(string, null)
})
nullable = false
- default = {}
+ default = {
+ endpoint_zones = [
+ "europe-west1-b",
+ "europe-west1-c",
+ "europe-west1-d"
+ ]
+ }
}