mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
17 lines
553 B
Text
17 lines
553 B
Text
---
|
|
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.
|