PPA Prod adjust how secrets are handled (#219)

* handle secrets differently

* removed secret params from main method signature

* simpler adjustment to read values from env vars, still use @click & specify the envvar name for the couple of values
This commit is contained in:
Daniel Mueller 2024-07-01 11:54:45 -04:00 коммит произвёл GitHub
Родитель 629c4926c7
Коммит d300d70bb1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -252,11 +252,13 @@ def store_data(results, bqclient, table_id):
)
@click.option(
"--auth-token",
envvar='AUTH_TOKEN',
help="HTTP bearer token to authenticate to the leader",
required=True,
)
@click.option(
"--hpke-private-key",
envvar='HPKE_PRIVATE_KEY',
help="The private key used to decrypt shares from the leader and helper.",
required=True,
)