This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
""" | |
A utility to stream records from one or many S3 Inventory reports, with a progress bar. | |
./parse-inventory-progress s3://my-bucket/path/to/my/inventory/2019-12-15T00-00Z/manifest.json > out.csv | |
""" | |
import json | |
import csv | |
import gzip | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", { |
OlderNewer