mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
24 lines
586 B
HCL
24 lines
586 B
HCL
output "private_subnets" {
|
|
value = data.terraform_remote_state.shared.outputs.vpc.private_subnet_arns
|
|
}
|
|
|
|
output "fleet_migration_revision" {
|
|
value = aws_ecs_task_definition.migration.revision
|
|
}
|
|
|
|
output "fleet_migration_subnets" {
|
|
value = jsonencode(aws_ecs_service.fleet.network_configuration[0].subnets)
|
|
}
|
|
|
|
output "fleet_migration_security_groups" {
|
|
value = jsonencode(aws_ecs_service.fleet.network_configuration[0].security_groups)
|
|
}
|
|
|
|
output "fleet_ecs_cluster_arn" {
|
|
value = aws_ecs_cluster.fleet.arn
|
|
}
|
|
|
|
output "fleet_ecs_cluster_id" {
|
|
value = aws_ecs_cluster.fleet.id
|
|
}
|