diff --git a/manifests/init.pp b/manifests/init.pp index 7f923b8..c0feb10 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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 @@ -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,