forked from pierront/but3-iac
IAM
This commit is contained in:
@@ -1,16 +1,29 @@
|
|||||||
output "frontend_public_ip" {
|
|
||||||
value = module.compute.frontend_public_ip
|
|
||||||
}
|
|
||||||
|
|
||||||
output "internal_ips" {
|
output "internal_ips" {
|
||||||
value = module.compute.internal_ips
|
value = module.compute.ip_interne
|
||||||
}
|
}
|
||||||
|
|
||||||
output "vpc_id" {
|
output "frontend_public_ip" {
|
||||||
value = module.network.vpc_id
|
value = module.compute.ip_public_frontend
|
||||||
|
}
|
||||||
|
|
||||||
|
output "instance_names" {
|
||||||
|
value = module.compute.nom_instance
|
||||||
}
|
}
|
||||||
|
|
||||||
output "service_account_email" {
|
output "service_account_email" {
|
||||||
value = module.iam.service_account_email
|
value = module.iam.service_account_email
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "service_account_key" {
|
||||||
|
sensitive = true
|
||||||
|
value = module.iam.service_account_key
|
||||||
|
}
|
||||||
|
|
||||||
|
output "vpc_id" {
|
||||||
|
value = module.network.vpc
|
||||||
|
}
|
||||||
|
|
||||||
|
output "subnets_ids" {
|
||||||
|
value = module.network.subnets
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user