Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
95908c9290 | |||
3c9c24f30b |
@ -1 +1 @@
|
||||
008
|
||||
010
|
||||
|
3
doc/issues/open/008-toggle-measure-visibility.md
Normal file
3
doc/issues/open/008-toggle-measure-visibility.md
Normal file
@ -0,0 +1,3 @@
|
||||
### Toggle Measure Visibility
|
||||
|
||||
Allow the user to choose whether a measure should be visible or hidden by default.
|
3
doc/issues/open/009-grouped-measures.md
Normal file
3
doc/issues/open/009-grouped-measures.md
Normal file
@ -0,0 +1,3 @@
|
||||
### Grouped Measures
|
||||
|
||||
Create a measure type that is just a grouping of several other measures. For example, it would be nice to be able to group all workout-related measures into one group. The graph could show an overlay of all the different measures on one graph.
|
@ -1,10 +1,5 @@
|
||||
resource "aws_secretsmanager_secret" "pmapi_auth" {
|
||||
name = "${local.environment_name}-AuthSecret"
|
||||
tags = { Environment = local.environment_name }
|
||||
}
|
||||
|
||||
resource "aws_secretsmanager_secret" "pmapi_db_conn_string" {
|
||||
name = "${local.environment_name}-DbConnString"
|
||||
resource "aws_secretsmanager_secret" "pmapi" {
|
||||
name = "${local.environment_name}-Config"
|
||||
tags = { Environment = local.environment_name }
|
||||
}
|
||||
|
||||
@ -38,12 +33,17 @@ resource "aws_ecs_task_definition" "pmapi" {
|
||||
{
|
||||
name = "AUTH_SECRET"
|
||||
description = "Auth secret used to hash and salt passwords."
|
||||
valueFrom = aws_secretsmanager_secret.pmapi_auth.arn
|
||||
valueFrom = "${aws_secretsmanager_secret.pmapi.arn}:authSecret::"
|
||||
},
|
||||
{
|
||||
name = "DB_CONN_STRING"
|
||||
description = "Connection string with user credentials."
|
||||
valueFrom = aws_secretsmanager_secret.pmapi_db_conn_string.arn
|
||||
valueFrom = "${aws_secretsmanager_secret.pmapi.arn}:dbConnString::"
|
||||
},
|
||||
{
|
||||
name = "KNOWN_ORIGINS"
|
||||
description = "Connection string with user credentials."
|
||||
valueFrom = "${aws_secretsmanager_secret.pmapi.arn}:knownOrigins::"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -27,8 +27,7 @@ resource "aws_iam_role" "ecs_task" {
|
||||
"kms:Decrypt"
|
||||
]
|
||||
Resource = [
|
||||
aws_secretsmanager_secret.pmapi_auth.arn,
|
||||
aws_secretsmanager_secret.pmapi_db_conn_string.arn
|
||||
aws_secretsmanager_secret.pmapi.arn
|
||||
]
|
||||
}
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user