LoginSignup
0
0

More than 1 year has passed since last update.

GCP Workflows で base64 変換をする

Posted at

ドキュメントを探してもわかりにくかったので

GCP Workflows 内で base64 変換をする方法。

文字列をバイト列に変換してから base64 変換します

    steps:
    - getBytes:
       call: text.encode
       args:
          text: "aaaaa"
       result: bytes
    - getEncoded:
       call: base64.encode
       args: 
          data: ${bytes}
       result: encoded
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0