raghavanrrs
raghavanrrs
when we use tools like terragrunt, we have the option to plan and apply all the dirs at once using `terragrunt run-all plan` and `terragrunt run-all apply` command, in these...
Never mind, written a bash script to search and create summary for plan files within the workspace.
use this python script meanwhile ``` import json import argparse from prettytable import PrettyTable def parse_json(file): with open(file) as json_file: data = json.load(json_file) table = PrettyTable() table.field_names = ["CHANGE", "TYPE",...
for set_sensitive values the actual values are not stored in the k8s secrets for example: ``` set_sensitive = [ { name = "config.secret.argocdServerAdminPassword" value = random_password.argo_admin.result } ] ``` planned...