45 lines
929 B
HCL
45 lines
929 B
HCL
output "vpc_id" {
|
|
description = "VPC ID"
|
|
value = module.vpc.vpc_id
|
|
}
|
|
|
|
output "cluster_id" {
|
|
description = "ACK Cluster ID"
|
|
value = module.ack.cluster_id
|
|
}
|
|
|
|
output "cluster_name" {
|
|
description = "ACK Cluster Name"
|
|
value = module.ack.cluster_name
|
|
}
|
|
|
|
output "db_connection_string" {
|
|
description = "RDS Connection String"
|
|
value = module.rds.db_connection_string
|
|
}
|
|
|
|
output "db_port" {
|
|
description = "RDS Port"
|
|
value = module.rds.db_port
|
|
}
|
|
|
|
output "redis_connection_string" {
|
|
description = "Redis Connection String"
|
|
value = module.redis.redis_connection_string
|
|
}
|
|
|
|
output "redis_port" {
|
|
description = "Redis Port"
|
|
value = module.redis.redis_port
|
|
}
|
|
|
|
output "oss_bucket_name" {
|
|
description = "OSS Bucket Name"
|
|
value = module.oss.bucket_name
|
|
}
|
|
|
|
output "oss_bucket_endpoint" {
|
|
description = "OSS Bucket Endpoint"
|
|
value = module.oss.bucket_endpoint
|
|
}
|