Skip to content

Commit

Permalink
add example domain
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbroks committed Aug 29, 2024
1 parent 8c31325 commit 403985b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ override.tf.json
# Ignore transient lock info files created by terraform apply
.terraform.tfstate.lock.info

examples/local/*
# Include override files you do wish to add to version control using negated pattern
# !example_override.tf

Expand Down
1 change: 1 addition & 0 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ provider "google-beta" {
module "ctrlplane" {
source = "../../"
namespace = var.namespace
domains = ["example.com"]
}
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ module "helm_release" {
global_static_ip_name = google_compute_global_address.this.name
pre_shared_cert = google_compute_managed_ssl_certificate.this.name

depends_on = [module.gke]
depends_on = [module.gke, module.database, module.redis, module.service_accounts]
}

0 comments on commit 403985b

Please sign in to comment.