Skip to content

Instantly share code, notes, and snippets.

View pio2pio's full-sized avatar

pio2pio

View GitHub Profile
@pio2pio
pio2pio / main.tf
Created May 25, 2020 12:11
Terraform template remove empty lines and comment lines starting with '#' symbol
variable "match_comment" { default = "/(?U)(?m)(?s)(^#.*$)/" }
variable "match_empty_line" { default = "/(?m)(?s)(^[\r\n])/" }
resource "helm_release" "myapp" {
name = "myapp"
chart = "${path.module}/charts/myapp"
values = [
replace(
replace(
templatefile("${path.module}/templates/values-override.yaml.tpl", {