Trying to use a dns ACME Plugin:
The issue I run into is how this
Here's what I have that's not working
This page says to export environment variables but I can't in this context.
Here says one key-value per line, which is what I have
What should creds.txt in my example look like?
Thanks!
Code:
pvenode acme account register default <email>
pvenode acme plugin add dns aws-dns-validation --api aws --data creds.txt
pvenode config set --acmedomain0 zeusprox01.esp.zone,plugin=aws-dns-validation
pvenode acme cert order
systemctl restart pveproxy
The issue I run into is how this
--data creds.txt
should be formatted. I'm using AWS.Here's what I have that's not working
Code:
ACCESS_KEY_ID=AKIAXE7ONotReALQRAZZ
SECRET_ACCESS_KEY=tt83/YrTszktnverWOuldpostmre5lkey+X7qpv8d8/df
This page says to export environment variables but I can't in this context.
Here says one key-value per line, which is what I have
--data File with one key-value pair per line, will be base64url encode for storage in plugin config.
What should creds.txt in my example look like?
Thanks!