Skip to content

Commit

Permalink
fix names for gcloud api deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerthome committed Oct 17, 2024
1 parent 6049d68 commit 3acf121
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform-incubator/home-unite-us/dev/cognito.tf
Original file line number Diff line number Diff line change
Expand Up @@ -354,13 +354,13 @@ resource "aws_secretsmanager_secret" "google_client_id" {
name = "homeuniteus-google-clientid"
}

resource "aws_secretsmanager_secret_policy" "google_client" {
secret_arn = aws_secretsmanager_secret.google_client.arn
resource "aws_secretsmanager_secret_policy" "google_client_id" {
secret_arn = aws_secretsmanager_secret.google_client_id.arn
policy = data.aws_iam_policy_document.admin_manage_secrets.json
}

data "aws_secretsmanager_secret_version" "google_client" {
secret_id = aws_secretsmanager_secret.google_client.id
data "aws_secretsmanager_secret_version" "google_client_id" {
secret_id = aws_secretsmanager_secret.google_client_id.id
}

resource "aws_secretsmanager_secret" "google_secret" {
Expand Down

0 comments on commit 3acf121

Please sign in to comment.