Skip to content

Commit

Permalink
fix: making sure to use right variable for path to template file
Browse files Browse the repository at this point in the history
fixes #56
  • Loading branch information
hferentschik committed Apr 3, 2020
1 parent 559eb3c commit aaf6429
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ module "dns" {
// Let's generate jx-requirements.yml
// ----------------------------------------------------------------------------
resource "local_file" "jx-requirements" {
content = templatefile("${path.cwd}/modules/jx-requirements.yaml.tpl", {
content = templatefile("${path.module}/modules/jx-requirements.yaml.tpl", {
gcp_project = var.gcp_project
zone = var.zone
cluster_name = local.cluster_name
Expand Down

0 comments on commit aaf6429

Please sign in to comment.