$ vagrant plugin install vagrant-converge
Uninstall with:
$ vagrant plugin uninstall vagrant-converge
Update the plugin with:
$ vagrant plugin update vagrant-converge
hcl(required) - A list of files to run through Converge. Can be a single path as a stringca_file(optional) - Path to a CA certificate to trust. Requiresuse_sslcert_file(optional) - Path to a certificate file for SSL. Requiresuse_sslkey_file(optional) - Path to a key file for SSL. Requiresuse_sslinstall(optional) - Install Converge binary. Default totruelocal(optional) - Run Converge in local mode. Defaults totruelocal_addr(optional) - Address to use for local RPC connectionlog_level(optional) - Logging level. One ofDEBUG,INFO,WARN,ERRORorFATAL. Default isINFOno_token(optional) - Don't use or generate an RPC tokenparams(optional) - A hash of parameter/value pairs to pass to Convergerpc_addr(optional) - Address for server RPC connection. Overrideslocalrpc_token(optional) - Token to use for RPCuse_ssl(optional) - Use SSL to connectverbose(optional) - Run the Converge plugin in verbose modeversion(optional) - Specify the version of Converge. Default is the latest version.
config.vm.provision :converge do |cvg|
cfg.params = {
"message" = "Not the default message"
}
cfg.hcl = [
"https://bintray.com/chrisaubuchon/generic/download_file?file_path=test.hcl"
]
cfg.install = true
end