fn::fromBase64
The fn::fromBase64 built-in function decodes its input into a binary value. This can be used to realize binary values that are stored as Base64-encoded (often for use with the files reserved property. If the input to fn::fromBase64 is a secret, the decoded value is also a secret.
Declaration
fn::fromBase64: value-to-decode
Parameters
| Property | Type | Description | 
|---|---|---|
| value-to-decode | string | The base64-encoded value. | 
Returns
The decoded data.
Example
Definition
values:
  binary-data:
    fn::fromBase64: aGVsbG8sIHdvcmxkIQo=
Evaluated result
{
  "binary-data": "hello, world!"
}
Thank you for your feedback!
If you have a question about how to use Pulumi, reach out in Community Slack.
Open an issue on GitHub to report a problem or suggest an improvement.
