les - dans nom

This commit is contained in:
Guillaume VALLAT 2024-12-04 17:13:25 +01:00
parent 2174bf8412
commit ad8fe669f0
2 changed files with 2 additions and 6 deletions

View File

@ -23,7 +23,7 @@ module "network" {
cidr_range = "10.0.0.0/16"
}
module "network" {
module "iam" {
source = "./modules/iam"
# Variables d'entrée
@ -34,7 +34,7 @@ module "network" {
cidr_range = "10.0.0.0/16"
}
module "network" {
module "compute" {
source = "./modules/compute"
# Variables d'entrée

View File

@ -1,4 +0,0 @@
# Output
output "instance_ip" {
value = google_compute_instance.main.network_interface[0].access_config[0].nat_ip
}