File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
# @param packages_to_install String: The packages to be installed by the Datadog installer.
6
6
#
7
7
class datadog_agent::installer_telemetry (
8
- Sensitive[String] $api_key,
8
+ Sensitive[String] $api_key = ' your_API_key ' ,
9
9
String $datadog_site = ' datadoghq.com' ,
10
10
String $packages_to_install = ' datadog-agent' ,
11
11
) {
Original file line number Diff line number Diff line change 13
13
# @param remote_policies Boolean: Whether to enable Agent remote policies. Default: false.
14
14
#
15
15
class datadog_agent::redhat_installer (
16
- Sensitive[String] $api_key,
16
+ Sensitive[String] $api_key = ' your_API_key ' ,
17
17
String $datadog_site = $datadog_agent::params::datadog_site,
18
18
Integer $agent_major_version = $datadog_agent::params::default_agent_major_version,
19
19
Optional[String] $agent_minor_version = undef ,
Original file line number Diff line number Diff line change 15
15
# Sample Usage:
16
16
#
17
17
class datadog_agent::reports (
18
- Sensitive[String] $api_key,
18
+ Sensitive[String] $api_key = ' your_API_key ' ,
19
19
String $puppetmaster_user,
20
20
String $dogapi_version,
21
21
Boolean $manage_dogapi_gem = true ,
Original file line number Diff line number Diff line change 13
13
# @param remote_policies Boolean: Whether to enable Agent remote policies. Default: false.
14
14
#
15
15
class datadog_agent::suse_installer (
16
- Sensitive[String] $api_key,
16
+ Sensitive[String] $api_key = ' your_API_key ' ,
17
17
String $datadog_site = $datadog_agent::params::datadog_site,
18
18
Integer $agent_major_version = $datadog_agent::params::default_agent_major_version,
19
19
Optional[String] $agent_minor_version = undef ,
Original file line number Diff line number Diff line change 18
18
# @param remote_policies Boolean: Whether to enable Agent remote policies. Default: false.
19
19
#
20
20
class datadog_agent::ubuntu_installer (
21
- Sensitive[String] $api_key,
21
+ Sensitive[String] $api_key = ' your_API_key ' ,
22
22
String $datadog_site = $datadog_agent::params::datadog_site,
23
23
Integer $agent_major_version = $datadog_agent::params::default_agent_major_version,
24
24
Optional[String] $agent_minor_version = undef ,
You can’t perform that action at this time.
0 commit comments