{"id":50584923,"url":"https://github.com/ipeterov/ecs-deployer-boto3","last_synced_at":"2026-06-05T05:30:21.859Z","repository":{"id":358246464,"uuid":"1240621131","full_name":"ipeterov/ecs-deployer-boto3","owner":"ipeterov","description":"Deploy applications to AWS ECS using boto3 and pydantic.","archived":false,"fork":false,"pushed_at":"2026-05-16T12:25:41.000Z","size":79,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-16T13:41:44.023Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ipeterov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-16T11:06:11.000Z","updated_at":"2026-05-16T12:31:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ipeterov/ecs-deployer-boto3","commit_stats":null,"previous_names":["ipeterov/ecs-deployer-boto3"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ipeterov/ecs-deployer-boto3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ipeterov%2Fecs-deployer-boto3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ipeterov%2Fecs-deployer-boto3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ipeterov%2Fecs-deployer-boto3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ipeterov%2Fecs-deployer-boto3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ipeterov","download_url":"https://codeload.github.com/ipeterov/ecs-deployer-boto3/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ipeterov%2Fecs-deployer-boto3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33932040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-05T05:30:21.048Z","updated_at":"2026-06-05T05:30:21.822Z","avatar_url":"https://github.com/ipeterov.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ecs-deployer-boto3\n\nDeploy applications to AWS ECS using boto3 and pydantic.\n\nThis library provides a thin, typed wrapper over the AWS ECS deployment API.\nIt is decoupled from how you discover or provision your infrastructure\n(CloudFormation, CDK, Terraform, or by hand) — you describe your services as\npydantic models and the library handles registering task definitions, creating\nor updating services, cleaning up old revisions, and monitoring deployments.\n\nSupports both EC2 (with placement strategy / constraints) and Fargate (with\ncapacity provider strategy and `awsvpc` network configuration).\n\n## Installation\n\n```bash\npip install ecs-deployer-boto3\n```\n\n## Usage\n\n```python\nimport boto3\n\nfrom ecs_deployer_boto3 import (\n    ApplicationUpdater,\n    Container,\n    DeploymentMonitor,\n    Service,\n    Task,\n)\n\nservices = [\n    Service(\n        name='web',\n        cluster='my-cluster',\n        task_definition=Task(\n            family='web',\n            containers=[\n                Container(\n                    name='web',\n                    image='123456789.dkr.ecr.us-east-1.amazonaws.com/web:latest',\n                    port_mappings=[{'container_port': 8000}],\n                ),\n            ],\n            cpu='256',\n            memory='512',\n            requires_compatibilities=['FARGATE'],\n        ),\n        launch_type='FARGATE',\n        network_configuration={\n            'subnets': ['subnet-abc'],\n            'security_groups': ['sg-abc'],\n            'assign_public_ip': 'ENABLED',\n        },\n    ),\n]\n\nsession = boto3.Session()\n\nupdater = ApplicationUpdater(services, session)\nupdater.update_application(environment={'FOO': 'bar'})\n\nmonitor = DeploymentMonitor(services, session)\nmonitor.monitor(limit_minutes=15)\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fipeterov%2Fecs-deployer-boto3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fipeterov%2Fecs-deployer-boto3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fipeterov%2Fecs-deployer-boto3/lists"}