service_arn
ARN of the ECS service. Use this for IAM policies and service discovery.
The ARN of the ECS service. Use this for IAM policies and service discovery.
Example Value
arn:aws:ecs:us-east-1:123456789012:service/my-cluster/api-service
Usage
module "ecs_service" {
source = "registry.patterneddesigns.ca/patterneddesigns/ecs-service/aws"
version = "0.1.0"
# ... inputs
}
# Access this output
output "service_arn" {
value = module.ecs_service.service_arn
}