Skip to content

Instantly share code, notes, and snippets.

View code2exe's full-sized avatar
💭
iDesign, iEngineer, iArchitect, iAutomate, iSecure, iDeploy, iManage Solutions

Henry code2exe

💭
iDesign, iEngineer, iArchitect, iAutomate, iSecure, iDeploy, iManage Solutions
View GitHub Profile
2021-04-26T03:20:33.811+0100 [DEBUG] Adding temp file log sink: /tmp/terraform-log310976017
2021-04-26T03:20:33.811+0100 [INFO] Terraform version: 0.15.0
2021-04-26T03:20:33.811+0100 [INFO] Go runtime version: go1.16.2
2021-04-26T03:20:33.812+0100 [INFO] CLI args: []string{"/usr/local/bin/terraform", "destroy", "-target=module.cloudflare", "-auto-approve"}
2021-04-26T03:20:33.812+0100 [DEBUG] Attempting to open CLI config file: /home/gh0st/.terraformrc
2021-04-26T03:20:33.814+0100 [INFO] Loading CLI configuration from /home/gh0st/.terraformrc
2021-04-26T03:20:33.815+0100 [DEBUG] ignoring non-existing provider search directory terraform.d/plugins
2021-04-26T03:20:33.815+0100 [DEBUG] ignoring non-existing provider search directory /home/gh0st/.terraform.d/plugins
2021-04-26T03:20:33.815+0100 [DEBUG] ignoring non-existing provider search directory /home/gh0st/.local/share/terraform/plugins
2021-04-26T03:20:33.816+0100 [DEBUG] ignoring non-existing provider search directory /usr/local/share/terraform/plugins
2021-04-21T11:46:09.414+0100 [DEBUG] provider.terraform-provider-cloudflare_v2.20.0.exe: 2021/04/21 11:46:09 [DEBUG] Data found in config: map[string]interface {}{}
2021-04-21T11:46:09.410+0100 [WARN] Provider "registry.terraform.io/cloudflare/cloudflare" produced an unexpected new value for module.cloudflare.cloudflare_record.okta during refresh.
- .data: was null, but now cty.MapValEmpty(cty.String)
2021-04-21T11:46:09.439+0100 [WARN] Provider "registry.terraform.io/cloudflare/cloudflare" produced an invalid plan for module.cloudflare.cloudflare_record.okta, but we are tolerating it because it is using the legacy plugin SDK.
The following problems may be the cause of any confusing errors from downstream operations:
- .proxied: planned value cty.False for a non-computed attribute
- .data: planned value cty.MapValEmpty(cty.String) for a non-computed attribute
2021-04-21T11:46:09.441+0100 [DEBUG] provider.stdio: received EOF, stopping recv loop: err="rpc error: code = Unavailable desc =
#!/bin/sh
current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')
if [ 'master' = ${current_branch} ]
then
echo "ERROR: Not allowed to push to master."
exit 1;
else
exit 0;
@code2exe
code2exe / profiles.json
Last active February 28, 2020 16:27
My minimal Windows Terminal profiles.json file
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"globals": {
"alwaysShowTabs": true,
"initialCols": 120,
"initialRows": 30,