Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: snowflake destination addition in firehose kinesis stream #36646

Merged
merged 18 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/36646.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
resource/aws_kinesis_firehose_delivery_stream: Add `snowflake_configuration` argument
```
6 changes: 6 additions & 0 deletions internal/acctest/crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ var (
tlsX509CertificateSerialNumberLimit = new(big.Int).Lsh(big.NewInt(1), 128) //nolint:gomnd
)

// TLSPEMRemoveRSAPrivateKeyEncapsulationBoundaries removes RSA private key
// pre and post encapsulation boundaries from a PEM string.
func TLSPEMRemoveRSAPrivateKeyEncapsulationBoundaries(pem string) string {
return removePEMEncapsulationBoundaries(pem, PEMBlockTypeRSAPrivateKey)
}

// TLSPEMRemovePublicKeyEncapsulationBoundaries removes public key
// pre and post encapsulation boundaries from a PEM string.
func TLSPEMRemovePublicKeyEncapsulationBoundaries(pem string) string {
Expand Down
Loading
Loading