forked from pierront/but3-iac
debut
This commit is contained in:
32
terraform/environments/dev/outputs.tf
Normal file
32
terraform/environments/dev/outputs.tf
Normal file
@@ -0,0 +1,32 @@
|
||||
output "frontend_ip" {
|
||||
value = module.compute.frontend_ip
|
||||
}
|
||||
|
||||
output "backend_ip" {
|
||||
value = module.compute.backend_ip
|
||||
}
|
||||
|
||||
output "database_ip" {
|
||||
value = module.compute.database_ip
|
||||
}
|
||||
|
||||
output "instance_names" {
|
||||
value = module.compute.instance_names
|
||||
}
|
||||
|
||||
output "vpc_id" {
|
||||
value = module.network.vpc_id
|
||||
}
|
||||
|
||||
output "subnet_ids" {
|
||||
value = module.network.subnet_ids
|
||||
}
|
||||
|
||||
output "service_account_email" {
|
||||
value = module.iam.service_account_email
|
||||
}
|
||||
|
||||
output "service_account_key" {
|
||||
value = module.iam.service_account_key
|
||||
sensitive = true
|
||||
}
|
||||
Reference in New Issue
Block a user