Remove data source from net-vpc module (#2216)

* remove data source from net-vpc module

* fix test inventories

* remove data source, fix fast inventories
This commit is contained in:
Ludovico Magnocavallo
2024-04-16 13:11:12 +02:00
committed by GitHub
parent a74a106f8b
commit 198d90c6fc
8 changed files with 23 additions and 20 deletions

View File

@@ -17,8 +17,24 @@
locals {
network = (
var.vpc_create
? try(google_compute_network.network.0, null)
: try(data.google_compute_network.network.0, null)
? {
id = try(google_compute_network.network.0.id, null)
name = try(google_compute_network.network.0.name, null)
self_link = try(google_compute_network.network.0.self_link, null)
}
: {
id = format(
"projects/%s/global/networks/%s",
var.project_id,
var.name
)
name = var.name
self_link = format(
"https://www.googleapis.com/compute/v1/projects/%s/global/networks/%s",
var.project_id,
var.name
)
}
)
peer_network = (
var.peering_config == null
@@ -27,12 +43,6 @@ locals {
)
}
data "google_compute_network" "network" {
count = var.vpc_create ? 0 : 1
project = var.project_id
name = var.name
}
resource "google_compute_network" "network" {
count = var.vpc_create ? 1 : 0
project = var.project_id