diff --git a/fast/stages/3-gcve-dev/README.md b/fast/stages/3-gcve-dev/README.md
index 8f2aebf57..568a0f892 100644
--- a/fast/stages/3-gcve-dev/README.md
+++ b/fast/stages/3-gcve-dev/README.md
@@ -179,9 +179,9 @@ terraform apply
| [folder_ids](variables-fast.tf#L46) | Folders used by FAST stages in folders/nnnnnnnnnnn format. | map(string) | | {} | 0-org-setup |
| [iam](variables.tf#L17) | Project-level authoritative IAM bindings for users and service accounts in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | |
| [iam_by_principals](variables.tf#L24) | Authoritative IAM binding in {PRINCIPAL => [ROLES]} format. Principals need to be statically defined to avoid cycle errors. Merged internally with the `iam` variable. | map(list(string)) | | {} | |
-| [network_peerings](variables.tf#L31) | The network peerings between users' VPCs and the VMware Engine networks. Key is used for the peering name suffix. Network is expanded for FAST defined networks. | map(object({…})) | | {…} | |
+| [network_peerings](variables.tf#L31) | The network peerings between users' VPCs and the VMware Engine networks. Key is used for the peering name suffix. Network is expanded for FAST defined networks. | map(object({…})) | | {…} | |
| [private_cloud_configs](variables.tf#L54) | The VMware private cloud configurations. Key is used for the private cloud name suffix. | map(object({…})) | | {} | |
-| [stage_config](variables.tf#L76) | FAST stage configuration used to find resource ids. Must match name defined for the stage in resource management. | object({…}) | | {…} | |
+| [stage_config](variables.tf#L76) | FAST stage configuration used to find resource ids. Must match name defined for the stage in resource management. | object({…}) | | {…} | |
| [vpc_self_links](variables-fast.tf#L63) | FAST host VPC self links. | map(string) | | {} | 2-networking |
## Outputs
diff --git a/fast/stages/3-gcve-dev/variables.tf b/fast/stages/3-gcve-dev/variables.tf
index 00ac24753..75b489e99 100644
--- a/fast/stages/3-gcve-dev/variables.tf
+++ b/fast/stages/3-gcve-dev/variables.tf
@@ -45,7 +45,7 @@ variable "network_peerings" {
nullable = false
default = {
dev-spoke-0 = {
- peer_network = "dev-spoke-0"
+ peer_network = "dev"
configure_peer_network = true
}
}
@@ -81,6 +81,6 @@ variable "stage_config" {
})
default = {
environment = "dev"
- name = "gcve-dev"
+ name = "gcve/dev"
}
}
diff --git a/tests/fast/stages/s3_gcve_dev/simple.tfvars b/tests/fast/stages/s3_gcve_dev/simple.tfvars
index 045598c5a..f647ff4c3 100644
--- a/tests/fast/stages/s3_gcve_dev/simple.tfvars
+++ b/tests/fast/stages/s3_gcve_dev/simple.tfvars
@@ -11,7 +11,7 @@ environments = {
}
folder_ids = {
- gcve-dev = "folders/00000000000000"
+ "gcve/dev" = "folders/00000000000000"
}
organization = {
@@ -35,7 +35,7 @@ private_cloud_configs = {
}
vpc_self_links = {
- "dev-spoke-0" = "projects/em-prod-net-spoke-0/global/networks/prod-spoke-0",
+ "dev" = "projects/em-dev-net-spoke-0/global/networks/dev-spoke-0",
}