Skip to content

Commit

Permalink
Fix Invalid template interpolation value error
Browse files Browse the repository at this point in the history
The terraform module doesn't accept variables with null values
  • Loading branch information
saliceti committed Dec 10, 2024
1 parent c0c066d commit ab69f2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions terraform/aks/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions terraform/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ variable "enable_dfe_analytics_federated_auth" {
}
variable "dataset_name" {
description = "dfe analytics dataset name in Google Bigquery"

default = null
default = "not in use"
}
variable "external_url" {
default = null
Expand Down

0 comments on commit ab69f2c

Please sign in to comment.