Skip to content

Commit

Permalink
google_vpc_access_connector missing GA args (#6718) (#307)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <magic-modules@google.com>

Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician authored Oct 19, 2022
1 parent 95f5ce9 commit 4c686e4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions vpc_access_connector_shared_vpc/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
resource "google_vpc_access_connector" "connector" {
provider = google-beta
name = "vpc-con-${local.name_suffix}"
subnet {
name = google_compute_subnetwork.custom_test.name
Expand All @@ -8,15 +7,13 @@ resource "google_vpc_access_connector" "connector" {
}

resource "google_compute_subnetwork" "custom_test" {
provider = google-beta
name = "vpc-con-${local.name_suffix}"
ip_cidr_range = "10.2.0.0/28"
region = "us-central1"
network = google_compute_network.custom_test.id
}

resource "google_compute_network" "custom_test" {
provider = google-beta
name = "vpc-con-${local.name_suffix}"
auto_create_subnetworks = false
}

0 comments on commit 4c686e4

Please # to comment.