Forge Home

windows_tableau

Install Tableau Server

10,543 downloads

9,729 latest version

1.3 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.2.0 (latest)
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
released Jan 20th 2015
This version is compatible with:
  • Puppet Enterprise 3.x
  • Puppet >= 3.3.0 < 4.0.0

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'noma4i-windows_tableau', '0.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add noma4i-windows_tableau
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install noma4i-windows_tableau --version 0.2.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

noma4i/windows_tableau — version 0.2.0 Jan 20th 2015

windows_tableau

Simple way to install Tableau Server on target system.

Available options

  • version - You must define Tableau Server version(short format). During setup this will used to locate proper tabadmin
  • trusted_host - Used to setup wgserver.trusted_hosts and open correspondent TCP rule in windows firewall.
  • type - Installation type. Possible options: local or remote. Based on this puppet will download TablueServer installer from url or from puppet server.
  • from - URL or filename from puppet server

How to use

Setup from remote url. Tableau official download site/

  class {'windows_tableau':
    ensure        =>  'present',
    version       =>  '8.3',
    trusted_host  =>  '192.168.1.1',
    type          =>  'remote',
    from          =>  'https://downloads.tableausoftware.com/tssoftware/TableauServer-64bit.exe'
  }

Setup from puppet server

  class {'windows_tableau':
    ensure        =>  'present',
    version       =>  '8.3',
    trusted_host  =>  '192.168.1.1',
    type          =>  'local',
    from          =>  'TableauServer-64bit.exe'
  }

What if I need to make additional setup in Tableau?

Not a problem! You are free to edit templates/initial_setup.ps1.erb and add your additions.

Limitations

If you are going to download Tableau with puppet from remote server, make sure that it will be fast enough. Puppet download known to be fussy about timeout. I'v made changes there but pull request is still pending https://github.com/opentable/puppet-download_file/pull/17