We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c01278f commit f57305cCopy full SHA for f57305c
1 file changed
infrastructure/terraform/components/dl/ssm_parameter_access_token.tf
@@ -2,8 +2,13 @@ resource "aws_ssm_parameter" "access_token" {
2
name = local.apim_access_token_ssm_parameter_name
3
description = "Access token for APIM"
4
type = "SecureString"
5
- value = ""
6
- tags = merge(local.default_tags, { Backup = "true" })
+ value = jsonencode({
+ "access_token" : "PLACEHOLDER",
7
+ "expires_at" : 1772810483,
8
+ "token_type" : "Bearer"
9
+ })
10
+
11
+ tags = merge(local.default_tags, { Backup = "true" })
12
13
lifecycle {
14
ignore_changes = [
0 commit comments