mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
parent
ded9d9ddf8
commit
a393f4e862
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable):
|
||||||
|
|
||||||
def _configure_hcloud_client(self):
|
def _configure_hcloud_client(self):
|
||||||
self.token_env = self.get_option("token_env")
|
self.token_env = self.get_option("token_env")
|
||||||
self.api_token = self.get_option("token") or os.getenv(self.token_env)
|
self.api_token = self.templar.template(self.get_option("token"), fail_on_undefined=False) or os.getenv(self.token_env)
|
||||||
if self.api_token is None:
|
if self.api_token is None:
|
||||||
raise AnsibleError(
|
raise AnsibleError(
|
||||||
"Please specify a token, via the option token, via environment variable HCLOUD_TOKEN "
|
"Please specify a token, via the option token, via environment variable HCLOUD_TOKEN "
|
||||||
|
|
Loading…
Reference in a new issue