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
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 |
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
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 = |
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
#!/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; |
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
// 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, |