Forge Home

phpmyadmin

Puppet phpMyAdmin module

47,380 downloads

28,952 latest version

4.5 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

  • 1.3.0 (latest)
  • 1.2.2
  • 1.2.1
  • 1.2.0
  • 1.1.0
  • 1.0.0
  • 0.2.2
  • 0.2.1
  • 0.2.0
  • 0.1.0
  • 0.0.4
  • 0.0.3
  • 0.0.1 (deleted)
released Jul 11th 2017
This version is compatible with:
  • , , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'jlondon-phpmyadmin', '1.3.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add jlondon-phpmyadmin
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install jlondon-phpmyadmin --version 1.3.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

jlondon/phpmyadmin — version 1.3.0 Jul 11th 2017

puppet-phpmyadmin

This is the puppet phpMyAdmin module which allows you to install and manage phpMyAdmin. Additionally you can use resources to specify a group of servers to add to a phpMyAdmin server.

The reason to use this to manage your phpMyAdmin rather than simply installing a package is that this module allow you to use stored resources to automatically generate a list of servers to use.

With this you don't need to worry about manually adding server entries to phpmyadmin or similar. Instead you can add a server similar to below:

Usage

node 'phpmyadminserver' {
  class { 'phpmyadmin': }
  phpmyadmin::server{ 'default': }

  phpmyadmin::vhost { 'internal.domain.net':
    vhost_enabled => true,
    priority      => '20',
    docroot       => $phpmyadmin::params::doc_path,
    ssl           => true,
    ssl_cert      => 'puppet:///modules/phpmyadmin/sslkey/internal.domain.net.crt',
    ssl_key       => 'puppet:///modules/phpmyadmin/sslkey/internal.domain.net.private.key',
  }

  phpmyadmin::vhost { 'external.domain.org':
    vhost_enabled => true,
    priority      => '30',
    docroot       => $phpmyadmin::params::doc_path,
    ssl           => true,
    ssl_cert      => 'puppet:///modules/phpmyadmin/sslkey/external.domain.org.crt',
    ssl_key       => 'puppet:///modules/phpmyadmin/sslkey/external.domain.org.private.key',
  }
}

node 'mysqlserver' {
  @@phpmyadmin::servernode { "${::ipaddress}":
    server_group => 'default',
  }
}

SSL Certificates

You can specify SSL certificates in two ways, either by using the ssl_cert and ssl_key parameters to point to the source files in Puppet:

phpmyadmin::vhost { 'external.domain.org':
  vhost_enabled => true,
  priority      => '30',
  docroot       => $phpmyadmin::params::doc_path,
  ssl           => true,
  ssl_cert      => 'puppet:///modules/phpmyadmin/sslkey/external.domain.org.crt',
  ssl_key       => 'puppet:///modules/phpmyadmin/sslkey/external.domain.org.private.key',
}

Or, if you have already transferred the certificates to the target node by some other means, by using the ssl_cert_file and ssl_key_file parameters which point to paths on the host machine:

phpmyadmin::vhost { 'external.domain.org':
  vhost_enabled => true,
  priority      => '30',
  docroot       => $phpmyadmin::params::doc_path,
  ssl           => true,
  ssl_cert_file => '/etc/ssl/certs/external.domain.org.crt',
  ssl_key_file  => '/etc/ssl/certs/external.domain.org.private.key',
}

SSL Redirection

Using the ssl_redirect parameter (default: false), you can force redirects for the domain from port 80 to port 443.

License

You are free to fork, modify, burn, break, twist or twine this module. If you do re-use the code, please give me credit for it though.

Contact

Justice London jlondon@syrussystems.com

Support

Please log tickets and issues at our Projects site