forked from pierront/but3-iac
tp
This commit is contained in:
37
terraform/environments/dev/outputs.tf
Normal file
37
terraform/environments/dev/outputs.tf
Normal file
@@ -0,0 +1,37 @@
|
||||
output "internal_ips" {
|
||||
value = module.compute.internal_ips
|
||||
}
|
||||
|
||||
output "frontend_public_ip" {
|
||||
value = module.compute.frontend_public_ip
|
||||
}
|
||||
|
||||
|
||||
output "instance_names" {
|
||||
value = module.compute.instance_names
|
||||
}
|
||||
|
||||
|
||||
|
||||
output "service_account_email" {
|
||||
description = "Email du compte de service Terraform."
|
||||
value = module.iam.email
|
||||
}
|
||||
|
||||
output "service_account_key" {
|
||||
description = "Clé privée du compte de service Terraform (sensitive)."
|
||||
value = module.iam.key
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
|
||||
output "vpc" {
|
||||
value = module.network.vpc_id
|
||||
}
|
||||
|
||||
output "subnets" {
|
||||
value = module.network.subnet_ids
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user