diff --git a/tf/modules/oonidevops_github_user/main.tf b/tf/modules/oonidevops_github_user/main.tf index ee1de56d..3c698767 100644 --- a/tf/modules/oonidevops_github_user/main.tf +++ b/tf/modules/oonidevops_github_user/main.tf @@ -29,7 +29,7 @@ resource "aws_secretsmanager_secret" "oonidevops_github" { resource "aws_secretsmanager_secret_version" "oonidevops_github" { secret_id = aws_secretsmanager_secret.oonidevops_github.id secret_string = jsonencode({ - "AccessKey" = aws_iam_access_key.oonidevops_github.id, + "AccessKeyId" = aws_iam_access_key.oonidevops_github.id, "SecretAccessKey" = aws_iam_access_key.oonidevops_github.secret }) }