output "service_account_email" { value = module.iam.terraform_sa_email } output "service_account_key" { value = module.iam.terraform_sa_key sensitive = true } output "vpc_id" { value = module.network.vpc_id } output "subnets" { value = { frontend = module.network.subnet_frontend_id backend = module.network.subnet_backend_id database = module.network.subnet_database_id } } output "instance_names" { value = [ module.compute.frontend_name, module.compute.backend_name, module.compute.database_name ] } output "private_ips" { value = { frontend = module.compute.frontend_private_ip backend = module.compute.backend_private_ip database = module.compute.database_private_ip } } output "frontend_public_ip" { value = module.compute.frontend_public_ip }