-
Notifications
You must be signed in to change notification settings - Fork 258
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added CDK deployment strategy (#9152)
* Added CDK deployment strategy * Fixed typo in error handling * Pylint doesn't like using e as a variable name * Update .pre-commit-config.yaml * Fixed exclude configu.yaml * Excluded file from prettier * Correctly ignored prettier config yaml * Addressing some minor issues * Allow deploying without specifying spoke accounts ; correct ConsoleMe case for resource names and descriptions * Updated user role creator statement * Docker image configurable to build current branch * Updated documentation for recommended deployment * Fixed linter comments * Elaborated regarding configuration parameters * Fixed config file typo in the README * Fixed physical resource ids * Dropped support for credential plugin to simplify flow for now * Fixed physical resource ids * Fixed physical resource ids * Fixed get main account from configuration file * Linter stuff Co-authored-by: Curtis <castrapel@users.noreply.github.com> Co-authored-by: ConsoleMe <ccastrapel@netflix.com>
- Loading branch information
1 parent
0eed023
commit 7d34bd7
Showing
34 changed files
with
2,433 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Ignore all HTML files: | ||
*.html | ||
*.html | ||
|
||
# Ignore config lambda yaml file: | ||
cdk/resources/create_config_lambda/config.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[[source]] | ||
url = 'https://pypi.python.org/simple' | ||
verify_ssl = true | ||
|
||
[dev-packages] | ||
consoleme_ecs_service = {editable = true,path = "cdk"} | ||
|
||
[packages] | ||
boto3 = "*" | ||
|
||
[requires] | ||
python_version = "3" |
Oops, something went wrong.