Simson L. Garfinkel
Simson L. Garfinkel
I created the DNS name and I'm getting the same error: ``` (venv) simsong@Simsons-MacBook-Pro digitalcorpora_app % zappa certify (bottle-dev)digitalcorpora_app Calling certify for stage production.. Are you sure you want to...
Curiously, even though I got an error, it works! https://aws-lambda.digitalcorpora.org/
Update: if you are using AWS certificate manager but *not* using route53, this needs to be added to the json file: ``` "route53_enabled" : false, ``` I added that, and...
I will give you a PR with marginally improved documentation. I haven't figured out enough to understand why I'm sometimes getting errors and sometimes not getting errors. It's confusing.
Right now this is how I'm adding AWS secrets to my zappa_config.json file: ``` "environment_variables": { "AWS": "YES", "DBREADER":"arn:aws:secretsmanager:us-east-1:376778041234:secret:dbreader_prod-734s, "DBWRITER":"arn:aws:secretsmanager:us-east-1:376778041234:secret:dbwriter_prod-akana", } ``` I would like to see Zappa do something...
Once you have the ARN you can pull the secret pretty easily. Here is the code I use: ``` SECRETSMANAGER = 'secretsmanager' secret_name = os.path.expandvars(section[AWS_SECRET_NAME]) region_name = os.path.expandvars(section[AWS_REGION_NAME]) session =...
I'm now maintaining my own copy of Zappa that has my additions in it. This is frustrating, but I don't know what to do. My changes are not significant, but...
> @simsong but this way you are just passing ARN to the env, these secrets aren't resolving to actual values? > > I'm lookin for the option to pull resolved...
@javulticat - I appreciate the answer above. However, this is functionality that I need now, and the authors seem to have abandoned it. What do you recommend I do?
Thanks for the update. Which is the correct result? The version that you were getting with 1.5.1 or with 1.6.1 ?