Vizzuality/landgriffon

View on GitHub
infrastructure/base/modules/github_secrets/main.tf

Summary

Maintainability
Test Coverage
resource "github_actions_secret" "gcp_project" {
  repository      = var.repo_name
  secret_name     = "GCP_PROJECT"
  plaintext_value = var.gcp_project
}

resource "github_actions_secret" "gcp_region" {
  repository      = var.repo_name
  secret_name     = "GCP_REGION"
  plaintext_value = var.gcp_region
}

resource "github_actions_secret" "sendgrid_api_key_subscription" {
  repository      = var.repo_name
  secret_name     = "MARKETING_SENDGRID_API_KEY_SUBSCRIPTION"
  plaintext_value = var.sendgrid_api_key_subscription
}

resource "github_actions_secret" "sendgrid_api_key_contact" {
  repository      = var.repo_name
  secret_name     = "MARKETING_SENDGRID_API_KEY_CONTACT"
  plaintext_value = var.sendgrid_api_key_contact
}

resource "github_actions_secret" "google_analytics" {
  repository      = var.repo_name
  secret_name     = "MARKETING_NEXT_PUBLIC_GOOGLE_ANALYTICS"
  plaintext_value = var.google_analytics
}