bvm-netbox: fix templating

This commit is contained in:
Luke Granger-Brown 2024-06-09 00:51:35 +01:00
parent bd7ad1220f
commit 3e0b56cb4b

View file

@ -132,7 +132,7 @@ in {
group = "root";
template = ''
{{ with secret "kv/apps/netbox" }}
{{ .Data.data.secret-key }}
{{ .Data.data.secretKey }}
{{ end }}
'';
};
@ -141,7 +141,7 @@ in {
group = "root";
template = ''
{{ with secret "kv/apps/netbox" }}
{{ .Data.data.s3-access-key }}
{{ .Data.data.s3AccessKey }}
{{ end }}
'';
};
@ -150,7 +150,7 @@ in {
group = "root";
template = ''
{{ with secret "kv/apps/netbox" }}
{{ .Data.data.s3-secret-access-key }}
{{ .Data.data.s3SecretAccessKey }}
{{ end }}
'';
};