如何让hiera输出文字字符串'%{:: fqdn}'?

时间:2017-03-24 17:12:39

标签: yaml hiera

我想知道我需要在yaml文件中使用hiera输出文字字符串%{::fqdn},而不是输出傀儡事实fqdn的值。

这是我尝试过的。

# grep foo::p4 /etc/puppetlabs/code/environments/production/hieradata/bar.yaml
foo::p4: 'http://%{hiera(''p1'')}/%{::fqdn}'

这就是结果:

# hiera foo::p4 '::prefix_fact=bar' '::fqdn=thing.com' environment=production
http://test/thing.com

我真正想要的输出是:

http://%{hiera('p1')}/%{::fqdn}

我想我可以像这样做一些傻瓜:

p1: 'test'
pa: '%{hiera'
pb: '("p1")}'
pc: '%{::fq'
pd: 'dn}'
foo::p4: "%{hiera('pa')}%{hiera('pb')}%{hiera('pc')}%{hiera('pd')}"

然后输出就是我想要的:

# hiera foo::p4 '::prefix=bar' '::fqdn=thing.com' environment=production
%{hiera("p1")}%{::fqdn}

1 个答案:

答案 0 :(得分:1)

根据documentation

foo:p4: 'http://%{literal(''%'')}{hiera(''p1'')}/%{literal(''%'')}{::fqdn}'