Skip to content

Commit

Permalink
fix owner label on gcp (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertpeteuil committed Jul 25, 2020
1 parent e609326 commit 4da2e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gcp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resource "google_dns_managed_zone" "gcp_sub_zone" {
description = "Managed by Terraform, Delegated Sub Zone for GCP for ${var.namespace}"
labels = {
name = var.namespace
owner = var.owner
owner = replace(var.owner, "/@|\\./", "-")
created-by = var.created-by
}
}
}

0 comments on commit 4da2e2b

Please sign in to comment.