Skip to content

Commit

Permalink
Fixing secrets creation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
caiocsgomes committed Jun 29, 2024
1 parent 504fa32 commit eadde9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/environments/prod/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ resource "aws_secretsmanager_secret" "gha_app_self_hosted_runner" {

variable "gha_app_self_hosted_runner_secret" {
type = object({
github_app_id = ""
github_app_installation_id = ""
github_app_private_key = ""
github_app_id = "github_app_id"
github_app_installation_id = "github_app_installation_id"
github_app_private_key = "github_app_private_key"
})
type = map(string)
}
Expand Down

0 comments on commit eadde9b

Please sign in to comment.