forked from pierront/but3-iac
mja
This commit is contained in:
@@ -0,0 +1,28 @@
|
|||||||
|
output "vpc_id" {
|
||||||
|
value = module.network.vpc_id
|
||||||
|
}
|
||||||
|
|
||||||
|
output "subnet_ids" {
|
||||||
|
value = module.network.subnet_ids
|
||||||
|
}
|
||||||
|
|
||||||
|
output "frontend_public_ip" {
|
||||||
|
value = module.compute.frontend_public_ip
|
||||||
|
}
|
||||||
|
|
||||||
|
output "internal_ips" {
|
||||||
|
value = module.compute.internal_ips
|
||||||
|
}
|
||||||
|
|
||||||
|
output "instance_names" {
|
||||||
|
value = module.compute.instance_names
|
||||||
|
}
|
||||||
|
|
||||||
|
output "service_account_email" {
|
||||||
|
value = module.iam.service_account_email
|
||||||
|
}
|
||||||
|
|
||||||
|
output "service_account_key" {
|
||||||
|
value = module.iam.service_account_private_key
|
||||||
|
sensitive = true
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user