-
-
Notifications
You must be signed in to change notification settings - Fork 355
feat: Allow for an existing ECS cluster to be used #233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Allow for an existing ECS cluster to be used #233
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of checking for empty strings, lets add a variable create_ecs_clsuter
and set the default to true
. then anywhere you are doing var.ecs_cluster_id == ""
will simply be var.create_ecs_cluster
…s-atlantis into allow_existing_ecs
everything checks out for this PR - if we can just address the one detail listed above we should be good to go - thanks @henworth and apologies for the delay |
This PR has been automatically marked as stale because it has been open 30 days |
@bryantbiggs no problem, I've reverted that output removal |
@henworth looks like you need to run |
oops, fixed @bryantbiggs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the PR @henworth - good to go @antonbabenko 👍🏽
## [3.12.0](v3.11.0...v3.12.0) (2022-02-11) ### Features * Allow for an existing ECS cluster to be used ([#233](#233)) ([6b7594a](6b7594a))
This PR is included in version 3.12.0 🎉 |
## [3.12.0](terraform-aws-modules/terraform-aws-atlantis@v3.11.0...v3.12.0) (2022-02-11) ### Features * Allow for an existing ECS cluster to be used ([terraform-aws-modules#233](terraform-aws-modules#233)) ([6b7594a](terraform-aws-modules@6b7594a))
## [3.12.0](terraform-aws-modules/terraform-aws-atlantis@v3.11.0...v3.12.0) (2022-02-11) ### Features * Allow for an existing ECS cluster to be used ([terraform-aws-modules#233](terraform-aws-modules#233)) ([6b7594a](terraform-aws-modules@6b7594a))
## [3.12.0](terraform-aws-modules/terraform-aws-atlantis@v3.11.0...v3.12.0) (2022-02-11) ### Features * Allow for an existing ECS cluster to be used ([terraform-aws-modules#233](terraform-aws-modules#233)) ([6b7594a](terraform-aws-modules@6b7594a))
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
Provide the ability to use an existing ECS cluster instead of making one.
Motivation and Context
Allow for the use of an existing cluster if there is a desire or requirement to do so.
Breaking Changes
None.
How Has This Been Tested?
examples/*
projectsRan this in my own environment to build my Atlantis instance using my existing cluster. This also passes all of the pre-commit tests.