fleet/infrastructure/dogfood/terraform/aws/outputs.tf
Benjamin Edwards 58d2b66042
add github action deploy via OIDC credentials (#5339)
* remove unused iam poilcy attributes and remove github action on pull request, only workflow dispatch will be required
* update github.tf, commenting out all resources, but leaving in place in case someone else wants to use ODIC providers & Github actions
2022-05-25 14:03:29 -04:00

71 lines
1.4 KiB
HCL

output "nameservers_fleetdm" {
value = aws_route53_zone.dogfood_fleetdm_com.name_servers
}
output "backend_security_group" {
value = aws_security_group.backend.arn
}
output "private_subnets" {
value = module.vpc.private_subnets
}
output "fleet-backend-task-revision" {
value = aws_ecs_task_definition.backend.revision
}
output "fleet-migration-task-revision" {
value = aws_ecs_task_definition.migration.revision
}
output "redis_cluster_members" {
value = toset(aws_elasticache_replication_group.default.member_clusters)
}
output "mysql_cluster_members" {
value = toset(module.aurora_mysql.rds_cluster_instance_ids)
}
output "acm_certificate_arn" {
value = aws_acm_certificate.dogfood_fleetdm_com.arn
}
output "load_balancer_arn_suffix" {
value = aws_alb.main.arn_suffix
}
output "target_group_arn_suffix" {
value = aws_alb_target_group.main.arn_suffix
}
output "fleet_min_capacity" {
value = var.fleet_min_capacity
}
output "fleet_ecs_service_name" {
value = aws_ecs_service.fleet.name
}
output "aws_alb_target_group_name" {
value = aws_alb_target_group.main.name
}
output "aws_alb_name" {
value = aws_alb.main.name
}
output "backend_security_group_id" {
value = aws_security_group.backend.id
}
output "private_subnet" {
value = module.vpc.private_subnets[0]
}
output "ecs_cluster_name" {
value = aws_ecs_cluster.fleet.name
}
output "migrate_task_definition_family" {
value = aws_ecs_task_definition.migration.family
}