Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
puppet-cfssl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adullact
puppet-cfssl
Merge requests
!4
Resolve "Add puppet-strings documentation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add puppet-strings documentation"
2-add-puppet-strings-documentation
into
main
Overview
0
Commits
1
Pipelines
2
Changes
13
Merged
Fabien Combernous
requested to merge
2-add-puppet-strings-documentation
into
main
2 years ago
Overview
0
Commits
1
Pipelines
2
Changes
13
Expand
Closes
#2 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
49a155ee
1 commit,
2 years ago
13 files
+
603
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
manifests/ca/intermediate.pp
+
14
−
3
Options
# @summary
A short summary of the purpose of this defined type.
# @summary
Creates an intermediate authority signed by root authority
#
#
A description of what this defined type does
#
Creates an intermediate authority signed by root authority
#
# @example
# cfssl::ca::intermediate { 'namevar': }
# cfssl::ca::intermediate { 'MYEXEMPLE INTERMDIATE CA':
# subject => {
# 'C' => 'FR',
# 'L' => 'MONTPELLIER',
# 'O' => 'MYEXEMPLE ORG',
# },
# }
#
# @param subject Hash like Subject in X509 that identifies the entity associated
# @param expiry Duration of authority
# @param key Cryptographic algorithm used for creating key pairs.
#
define
cfssl::ca::intermediate
(
Hash
$subject
=
{
'C'
=>
'FR'
,
'L'
=>
'MONTPELLIER'
,
'O'
=>
'EXEMPLE ORG'
,
},
String
[
1
]
$expiry
=
'26280h'
,
Loading