The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

base64 -d error (pipe: atlassian/google-app-engine-deploy:0.6.0)

Behrad Sadoughian
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 5, 2020

i am trying to deploy google app engine.

 

my pipe is :

- pipe: atlassian/google-app-engine-deploy:0.6.0
variables:
KEY_FILE: ~/AhaAppEngine/deploy/alykadev01-9dce7be5d92c.key
PROJECT: 'xxxx'

 

The key file exists and when I do cat "${KEY_FILE}" | base64 -d it can decode the file. while the pipeline does something odd:

 

Status: Downloaded newer image for bitbucketpipelines/google-app-engine-deploy:0.6.0INFO:

Setting up environment.

echo "${KEY_FILE}" | base64 -d >> /tmp/key-file.jsonbase64:

invalid input

 

I think the pipeline code is not correct. It should be:

cat "${KEY_FILE}" | base64 -d

 

right?

 

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
mark_hetherington
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 9, 2020

Pipelines is not reading a file for the KEY_FILE, but echoing out an environment variable. the KEY_FILE value should not be a file path (you shouldn't keep your secrets in version control where they could leak to other developers) but the base64 encoded contents of the key file. This can be set in the repository settings, or even on a per deployment basis.

TAGS
AUG Leaders

Atlassian Community Events