forked from pierront/but3-iac
25 lines
685 B
HCL
25 lines
685 B
HCL
output "vpc_terraform_output" {
|
|
value = google_compute_network.vpc_terraform.id
|
|
}
|
|
|
|
output "list_id" {
|
|
value = {
|
|
frontend = google_compute_subnetwork.subnet_frontend.id
|
|
backend = google_compute_subnetwork.subnet_backend.id
|
|
database = google_compute_subnetwork.subnet_database.id
|
|
}
|
|
}
|
|
|
|
output "vpc_id" {
|
|
description = "ID du VPC créé"
|
|
value = google_compute_network.vpc_terraform.id
|
|
}
|
|
|
|
output "subnets" {
|
|
description = "IDs des subnets du VPC"
|
|
value = {
|
|
frontend = google_compute_subnetwork.subnet_frontend.id
|
|
backend = google_compute_subnetwork.subnet_backend.id
|
|
database = google_compute_subnetwork.subnet_database.id
|
|
}
|
|
} |