33 lines
841 B
YAML
33 lines
841 B
YAML
---
|
|
# Global variables for all environments
|
|
# These can be overridden by host-specific variables or command line
|
|
|
|
# ECS Configuration
|
|
ecs_cluster_name: nvhi-atsila-cluster
|
|
service_name: nvhi-atsila-cluster-service
|
|
task_family: nvhi-atsila-cluster-task
|
|
container_name: nvhi-atsila-microservice
|
|
|
|
# AWS Configuration
|
|
aws_region: us-east-2
|
|
container_port: 8080
|
|
health_check_path: /health
|
|
|
|
# Connection Settings
|
|
ansible_ssh_common_args: '-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o ConnectTimeout=10 -o ServerAliveInterval=60'
|
|
ansible_ssh_retries: 3
|
|
ansible_timeout: 30
|
|
|
|
# Application Settings
|
|
app_port: 8080
|
|
health_check_timeout: 10
|
|
health_check_retries: 10
|
|
health_check_delay: 15
|
|
|
|
# Deployment Settings
|
|
deployment_timeout: 600
|
|
service_stabilization_retries: 30
|
|
service_stabilization_delay: 20
|
|
|
|
# Logging
|
|
log_retention_days: 7 |