This file contains 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
panic: runtime error: invalid memory address or nil pointer dereference | |
2020-08-13T08:39:11.963Z [DEBUG] plugin.terraform-provider-vault_v2.11.0_x4: [signal SIGSEGV: segmentation violation code=0x1 addr=0x30 pc=0x1024770] | |
2020-08-13T08:39:11.963Z [DEBUG] plugin.terraform-provider-vault_v2.11.0_x4: | |
2020-08-13T08:39:11.963Z [DEBUG] plugin.terraform-provider-vault_v2.11.0_x4: goroutine 41 [running]: | |
2020-08-13T08:39:11.963Z [DEBUG] plugin.terraform-provider-vault_v2.11.0_x4: github.com/terraform-providers/terraform-provider-vault/vault.identityEntityCreate(0xc000262460, 0x13a1ac0, 0xc0001443f0, 0x2, 0x1fe4640) | |
2020-08-13T08:39:11.963Z [DEBUG] plugin.terraform-provider-vault_v2.11.0_x4: /opt/teamcity-agent/work/5d79fe75d4460a2f/src/github.com/terraform-providers/terraform-provider-vault/vault/resource_identity_entity.go:110 +0x2e0 | |
2020-08-13T08:39:11.963Z [DEBUG] plugin.terraform-provider-vault_v2.11.0_x4: github.com/hashicorp/terraform-plugin-sdk/helper/schema.(*Resource).Apply(0xc000132f00, 0xc000098c80, 0xc |
This file contains 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/bash | |
# This is a script that unsubscribes an email address from AWS junk mail. | |
# If the script breaks it might be the magic numbers that needs to change. | |
# Send the form while tracing the request in your browser to find the new values. | |
# https://pages.awscloud.com/communication-preferences | |
unsubscribe_aws_email() { | |
curl "https://pages.awscloud.com/index.php/leadCapture/save2" \ | |
-H "Accept: application/json" \ |
This file contains 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
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
// Name of the struct tag used in examples | |
const tagName = "validate" |
OlderNewer