Skip to content

Commit

Permalink
Merge pull request #29 from bloombergindustry/disable-source
Browse files Browse the repository at this point in the history
provide an option to disable installing from source
  • Loading branch information
m0dular authored Aug 15, 2022
2 parents c905fa5 + 3a5b5b0 commit a55d3d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# @param version
# Version of InfluxDB to install. Changing this is not recommended.
# @param archive_source
# URL containing an InfluxDB archive if not installing from a repository. Defaults to version 2-2.1.1 on amd64 architechture.
# URL containing an InfluxDB archive if not installing from a repository or false to disable installing from source. Defaults to version 2-2.1.1 on amd64 architechture.
# @param use_ssl
# Whether to use http or https connections. Defaults to true (https).
# @param manage_ssl
Expand Down Expand Up @@ -52,7 +52,7 @@

String $repo_name = 'influxdb2',
String $version = '2.1.1',
String $archive_source = 'https://dl.influxdata.com/influxdb/releases/influxdb2-2.1.1-linux-amd64.tar.gz',
Variant[String,Boolean[false]] $archive_source = 'https://dl.influxdata.com/influxdb/releases/influxdb2-2.1.1-linux-amd64.tar.gz',

Boolean $use_ssl = true,
Boolean $manage_ssl = true,
Expand Down

0 comments on commit a55d3d8

Please sign in to comment.