We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928614b commit bd65406Copy full SHA for bd65406
2 files changed
spec/classes/datadog_agent_reports_spec.rb
@@ -172,7 +172,7 @@
172
should contain_file(conf_file)\
173
.with_owner('puppet')\
174
.with_group('root')\
175
- .with_content(/:api_url: api.datadoghq.eu/)
+ .with_content(/:api_url: https:\/\/api.datadoghq.eu/)
176
end
177
it { should contain_file(conf_file).without_content(/hostname_extraction_regex:/) }
178
templates/datadog-reports.yaml.erb
@@ -2,7 +2,7 @@
2
3
---
4
:datadog_api_key: '<%= @api_key %>'
5
-:api_url: api.<%= @datadog_site %>
+:api_url: https://api.<%= @datadog_site %>
6
<% if @hostname_extraction_regex -%>
7
:hostname_extraction_regex: '<%= @hostname_extraction_regex %>'
8
<% end -%>
0 commit comments