outputs.tf
465 Bytes
output "api_url" {
description = "API Gateway 完整访问 URL"
value = aws_api_gateway_stage.prod.invoke_url
}
output "api_id" {
description = "API Gateway ID"
value = aws_api_gateway_rest_api.user_management.id
}
output "stage_name" {
description = "API Stage 名称"
value = aws_api_gateway_stage.prod.stage_name
}
output "rest_api_id" {
description = "REST API ID"
value = aws_api_gateway_rest_api.user_management.id
}