Skip to content
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: support customization metric auto scaling #40

Merged
merged 53 commits into from
Oct 24, 2023
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
5f8983e
chore: format code
xshot9011 Feb 16, 2023
d1f80bf
chore: format code
xshot9011 Feb 16, 2023
3e5bdc9
chore: just want to snapshot
xshot9011 Feb 17, 2023
68965ea
chore: remove comment
xshot9011 Feb 17, 2023
f69d52a
chore: remove previous version
xshot9011 Feb 17, 2023
30b064c
chore: first darft
xshot9011 Feb 17, 2023
d71dd90
chore: make it first run; before restrucutre it
xshot9011 Feb 17, 2023
b18e537
chore: make it first run
xshot9011 Feb 17, 2023
5b3f835
chore: remove comment part
xshot9011 Feb 21, 2023
9241e63
chore: remove comment part
xshot9011 Feb 21, 2023
8afaf60
feat: support select container to attached lb
xshot9011 Feb 21, 2023
a5a1030
chore: remove unused resource
xshot9011 Feb 21, 2023
28d24c4
chore: remove raise valid
xshot9011 Feb 21, 2023
8c68f40
fix: error in target group
xshot9011 Feb 21, 2023
ee94be5
fix: error in target group
xshot9011 Feb 21, 2023
4c3a604
chore: update listener rule
xshot9011 Feb 21, 2023
6209400
feat: configuration mem, cpu as task level
xshot9011 Feb 21, 2023
f7ad157
feat: secret base on container inside
xshot9011 Feb 21, 2023
69b3bfe
feat: secret separate by container
xshot9011 Feb 21, 2023
46382c9
fix: secrets typo
xshot9011 Feb 21, 2023
a8c4183
chore: remove validation
xshot9011 Feb 21, 2023
5d056f3
chore: update new way to put secret and env
xshot9011 Feb 21, 2023
2a2c757
chore: remove unused var
xshot9011 Feb 21, 2023
f488403
chore: update output
xshot9011 Feb 21, 2023
40151b5
chore: update env and sec
xshot9011 Feb 21, 2023
cfd49ab
chore: update env and sec
xshot9011 Feb 21, 2023
15f8d66
chore: update env and sec
xshot9011 Feb 21, 2023
75eb55f
chore: update env and sec
xshot9011 Feb 21, 2023
517e7c1
chore: update env and sec
xshot9011 Feb 21, 2023
626ef4a
chore: fix raise condition
xshot9011 Feb 21, 2023
7e7fc9e
chore: remove comment
xshot9011 Feb 21, 2023
4b994a7
chore: remove comment
xshot9011 Feb 21, 2023
36ce13e
fix: code smell and example usage
xshot9011 Feb 27, 2023
bf5e136
fix: security issue log group with kms (#39)
xshot9011 May 12, 2023
61e8199
fix: ref to non created resource
xshot9011 Jun 2, 2023
ba34b13
chore: test host_headers
xshot9011 Jun 2, 2023
1e31e6a
chore: test host_headers
xshot9011 Jun 2, 2023
1643814
test: host header
lycbrian Jun 8, 2023
547d1bd
chore: un limite provider version
xshot9011 Jun 8, 2023
cc51a24
Merge branch 'feat/support-multiple-sidecard-container' of github.com…
xshot9011 Jun 8, 2023
17ebc86
chore: linter
xshot9011 Aug 10, 2023
a3d7d2b
chore: lint code
xshot9011 Aug 11, 2023
f5e0084
chore: update CHANGELOG
xshot9011 Aug 11, 2023
97975b0
chore: mask the date
xshot9011 Aug 11, 2023
9cde567
chore: first draft before changing all things
xshot9011 Oct 9, 2023
b8c97a5
feat: support customization metric
xshot9011 Oct 10, 2023
f1b9c17
chore: update CHANGELOG
xshot9011 Oct 11, 2023
8074ca8
chore: merge
xshot9011 Oct 11, 2023
ab01d81
fix: merge conflict
xshot9011 Oct 20, 2023
0a896f2
chore: update CHANGELOG
xshot9011 Oct 20, 2023
cef53b7
chore: update README
xshot9011 Oct 20, 2023
026544e
chore: update README for example
xshot9011 Oct 20, 2023
4565c19
chore: update examples
xshot9011 Oct 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: update env and sec
  • Loading branch information
xshot9011 committed Feb 21, 2023
commit 15f8d66a356627b4d13a0e700cdb1df930c30692
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ resource "aws_secretsmanager_secret_version" "this" {
# inject them as environment variables in the service
resource "aws_iam_role_policy" "task_execution_role_access_secret" {
# count = var.is_create_iam_role && length(var.secret_variables) > 0 ? 1 : 0
for_each = { for key, value in var.container : key => value if try(value.secret_variables, null) != null }
for_each = var.container

name = "${each.value.name}-ecs-task-execution-secrets"
role = local.task_execution_role_id
Expand Down