mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 11:17:35 -05:00
18 lines
553 B
Plaintext
18 lines
553 B
Plaintext
---
|
|
sidebar_label: base64gunzip
|
|
description: |-
|
|
The base64gunzip function decodes a Base64-encoded string and uncompresses the result with gzip.
|
|
---
|
|
|
|
# `base64gunzip` Function
|
|
|
|
`base64gunzip` decodes a Base64-encoded string and uncompresses the result with gzip.
|
|
|
|
Opentofu uses the "standard" Base64 alphabet as defined in
|
|
[RFC 4648 section 4](https://tools.ietf.org/html/rfc4648#section-4).
|
|
|
|
## Related Functions
|
|
|
|
* [`base64gzip`](../../language/functions/base64gzip.mdx) compresses a string with gzip and then encodes the result in
|
|
Base64 encoding.
|