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
| 2022-10-20T10:43:33.356-0700 [INFO] Terraform version: 1.3.2 | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] using github.com/hashicorp/go-tfe v1.9.0 | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] using github.com/hashicorp/hcl/v2 v2.14.1 | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] using github.com/hashicorp/terraform-config-inspect v0.0.0-20210209133302-4fd17a0faac2 | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] using github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] using github.com/zclconf/go-cty v1.11.0 | |
| 2022-10-20T10:43:33.356-0700 [INFO] Go runtime version: go1.19.1 | |
| 2022-10-20T10:43:33.356-0700 [INFO] CLI args: []string{"/opt/homebrew/Cellar/tfenv/3.0.0/versions/1.3.2/terraform", "fmt", "-recursive=true"} | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] Attempting to open CLI config file: /Users/thomas/.terraformrc | |
| 2022-10-20T10:43:33.356-0700 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. |
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
| # file/path: ~/.oh-my-zsh/custom/environment.zsh | |
| # -------------------------------------|------------------------------------- # | |
| # SHELL # | |
| # --------------------------------------------------------------------------- # | |
| alias hist='history | cut -c 8-' | |
| # --------------------------------------------------------------------------- # | |
| # Rust # | |
| # --------------------------------------------------------------------------- # | |
| #source "$HOME/.cargo/env" |
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
| # NETWORKING | |
| resource "aws_vpc" "vpc_network" { | |
| cidr_block = var.host_cidr | |
| enable_dns_hostnames = true | |
| enable_dns_support = true | |
| assign_generated_ipv6_cidr_block = true # REQd | |
| tags = { | |
| "Name" = var.project | |
| "kubernetes.io/cluster/${var.cluster_apps}" = "shared" |
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
| A1 - foo | |
| B2 - bar | |
| C3 - baz |
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
| # Some of these programs are target installs; others are installed as dependencies. | |
| # If the purpose of the program is not obvious, it's probably a dependency. | |
| # --------------------------------------------------------------------------------- | |
| autoconf | |
| automake | |
| aws-iam-authenticator | |
| awscli | |
| bash | |
| bazel | |
| bdw-gc |
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
| --- | |
| csi: | |
| daemonSet: | |
| annotations: {} | |
| kubeletRootDir: /var/lib/kubelet | |
| providersDir: /etc/kubernetes/secrets-store-csi-providers | |
| updateStrategy: | |
| maxUnavailable: "" | |
| type: RollingUpdate | |
| debug: false |
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
| --- | |
| global: | |
| enabled: true | |
| psp: | |
| annotations: | | |
| seccomp.security.alpha.kubernetes.io/allowedProfileNames: docker/default,runtime/default | |
| apparmor.security.beta.kubernetes.io/allowedProfileNames: runtime/default | |
| seccomp.security.alpha.kubernetes.io/defaultProfileName: runtime/default | |
| apparmor.security.beta.kubernetes.io/defaultProfileName: runtime/default | |
| enable: false |
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 bash | |
| { IFS= read -rd '' secretMaterial <'foo-api.pem';} 2>/dev/null | |
| myEncodedCert="$(echo -n "$secretMaterial" | base64)" | |
| echo "$myEncodedCert" | |
| myEncodedCert is displayed in a text block. I need it in a flat line as the "Target" at the bottom. | |
| --- | |
| OUTPUT: Actual |
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
| # If EXISTING install start here | |
| # Dump the current Terraform binary | |
| brew unlink terraform | |
| brew uninstall terraform | |
| # If NEW install start here | |
| # Install tfenv | |
| brew install tfenv | |
| --- |
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 bash | |
| #set -x | |
| ###---------------------------------------------------------------------------- | |
| ### FUNCTIONS | |
| ###---------------------------------------------------------------------------- | |
| function pMsg() { | |
| theMessage="$1" | |
| printf '%s\n' "$theMessage" | |
| } |