Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set require_squad to false #607

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions iac/github_verify.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
resource "google_dns_record_set" "github_verify" {
managed_zone = google_dns_managed_zone.top-level-zone.name

name = "_gh-octo-sts-o.octo-sts.dev."
type = "TXT"
ttl = 300
name = "_gh-octo-sts-o.octo-sts.dev."
type = "TXT"
ttl = 300

rrdatas = [
"\"cc539450df\"",
Expand Down
7 changes: 4 additions & 3 deletions modules/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,10 @@ module "this" {
source = "chainguard-dev/common/infra//modules/regional-service"
version = "0.6.98"

project_id = var.project_id
name = var.name
regions = var.regions
project_id = var.project_id
name = var.name
regions = var.regions
require_squad = false

deletion_protection = var.deletion_protection

Expand Down