Forge Home

cert_x509certificate

x509 .cer file certificate import and removal by thumbprint - windows

8,200 downloads

8,200 latest version

3.1 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.0.0 (latest)
released Sep 18th 2015

Start using this module

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

Add this module to your Puppetfile:

mod 'karmafeast-cert_x509certificate', '1.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add karmafeast-cert_x509certificate
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install karmafeast-cert_x509certificate --version 1.0.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

karmafeast/cert_x509certificate — version 1.0.0 Sep 18th 2015

karmafeast-cert_x509certificate

x509 .cer file import to cert stores on windows via powershell.

removal via ensure => absent and thumbprint match.

need cert thumbprint for unless comparison in ensure => present unless file provided

example use:

class dogfood{

cert_x509certificate::import { 'intermediate CA cert':
    certpath  => "c:\\temp\\mycert.cer",
    certrootstore => 'LocalMachine',
    certstore => 'CA',
    ensure=> 'present',
  }

cert_x509certificate::import { 'remove old cert':
    certrootstore => 'LocalMachine',
    certstore => 'My',
    ensure=> 'absent',
    thumbprint=> '4111F03333C8942222229B277777772350002A97',
  }

}