Skip to content

Commit

Permalink
feat: google email
Browse files Browse the repository at this point in the history
  • Loading branch information
cptchloroplast committed Nov 18, 2023
1 parent 09aa2f1 commit 54ca9e1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
11 changes: 6 additions & 5 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ module "application" {
version = "~> 0.4"
depends_on = [module.team]

zone_id = var.cloudflare_zone_id
name = var.github_repository
github_teams = [var.github_repository]
use_root = true
path = "edit"
zone_id = var.cloudflare_zone_id
name = var.github_repository
github_teams = [var.github_repository]
use_root = true
path = "edit"
google_emails = [var.google_email]
}

module "team" {
Expand Down
3 changes: 3 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
variable "cloudflare_account_id" {}
variable "cloudflare_zone_id" {}
variable "github_repository" {}
variable "google_email" {
sensitive = true
}

# GitHub Actions Secrets
variable "TF_API_TOKEN" {
Expand Down

0 comments on commit 54ca9e1

Please sign in to comment.