Skip to content
This repository has been archived by the owner on Oct 19, 2020. It is now read-only.

Commit

Permalink
Use new env var names for aws creds (#15)
Browse files Browse the repository at this point in the history
openshift/assisted-service#154 changed them
from lower case to caps
  • Loading branch information
carbonin authored Aug 18, 2020
1 parent 1c468e2 commit deb5257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions render_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ def main():
inventory_endpoint = os.environ.get("INVENTORY_ENDPOINT")
s3_endpoint_url = os.environ.get("S3_ENDPOINT_URL", args.s3_endpoint_url)
bucket = os.environ.get('S3_BUCKET', args.s3_bucket)
aws_access_key_id = os.environ.get("aws_access_key_id", "accessKey1")
aws_secret_access_key = os.environ.get("aws_secret_access_key", "verySecretKey1")
aws_access_key_id = os.environ.get("AWS_ACCESS_KEY_ID", "accessKey1")
aws_secret_access_key = os.environ.get("AWS_SECRET_ACCESS_KEY", "verySecretKey1")
# openshift_release_image = os.environ.get("OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE")
skip_cert_verification = os.environ.get('SKIP_CERT_VERIFICATION', False)
ca_cert_path = os.environ.get('CA_CERT_PATH')
Expand Down

0 comments on commit deb5257

Please sign in to comment.