diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2019-11-12 15:43:05 +0100 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2019-11-12 15:45:12 +0100 |
commit | 70b99d4dedfffeee58f7b85e337ebf92472f4e2d (patch) | |
tree | 0a95f1975c282dd0da5a22698520a7d12953b9f6 /cloudinit/sources | |
parent | d3784d6809260abc42ec1895c09cfbeef06296d8 (diff) | |
download | vyos-cloud-init-70b99d4dedfffeee58f7b85e337ebf92472f4e2d.tar.gz vyos-cloud-init-70b99d4dedfffeee58f7b85e337ebf92472f4e2d.zip |
add the ability to put the api key
Diffstat (limited to 'cloudinit/sources')
-rw-r--r-- | cloudinit/sources/DataSourceOVF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py index 0edf76aa..6330b234 100644 --- a/cloudinit/sources/DataSourceOVF.py +++ b/cloudinit/sources/DataSourceOVF.py @@ -396,7 +396,7 @@ def read_ovf_environment(contents): ud = None cfg_props = ['password'] md_props = ['seedfrom', 'local-hostname', 'public-keys', 'instance-id', - 'ip0', 'netmask0', 'gateway', 'DNS', 'NTP'] + 'ip0', 'netmask0', 'gateway', 'DNS', 'NTP', 'APIKEY'] for (prop, val) in props.items(): if prop == 'hostname': prop = "local-hostname" |