Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fg# Keeper Secrets Manager
# Keeper Secrets Manager

Keeper Secrets Manager is a component of the Keeper Enterprise platform. It provides your DevOps, IT Security and
software development teams with a fully cloud-based, Zero-Knowledge platform for managing all of your
Expand Down
2 changes: 1 addition & 1 deletion integration/keeper_secrets_manager_puppet/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Puppet Keeper Secret Manager
# Puppet Keeper Secrets Manager

## Table of Contents

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def validate_prerequisites(script_path, config_path, python_executable)
require 'open3'
_stdout, _stderr, status = Open3.capture3(python_executable, '-c', 'import keeper_secrets_manager_core')
unless status.success?
raise Puppet::Error, 'keeper-secrets-manager-core not installed. Ensure keeper_secret_manager_puppet class is applied first.'
raise Puppet::Error, 'keeper-secrets-manager-core not installed. Ensure keeper_secrets_manager_puppet class is applied first.'
end
rescue => e
raise Puppet::Error, "Failed to validate keeper-secrets-manager-core installation: #{e.message}"
Expand Down
4 changes: 2 additions & 2 deletions integration/keeper_secrets_manager_puppet/manifests/config.pp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}

# first Check if KEEPER_CONFIG is set in the environment
$auth_value_from_env = keeper_secret_manager_puppet::lookup_env_value($authentication_config[1])
$auth_value_from_env = keeper_secrets_manager_puppet::lookup_env_value($authentication_config[1])

# if auth_value_from_env is nil/undef and $authentication_config[1] value starts with 'ENV:'
if $auth_value_from_env == undef and $authentication_config[1] =~ String and $authentication_config[1] =~ /^ENV:/ {
Expand Down Expand Up @@ -151,7 +151,7 @@
owner => $owner_value,
group => $group_value,
mode => $python_script_mode,
source => "puppet:///modules/keeper_secret_manager_puppet/${python_script_name}",
source => "puppet:///modules/keeper_secrets_manager_puppet/${python_script_name}",
require => File[$config_dir_path],
}

Expand Down
2 changes: 1 addition & 1 deletion integration/keeper_secrets_manager_puppet/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "keepersecurity-keeper_secrets_manager_puppet",
"version": "1.0.0",
"author": "Keeper Security",
"summary": "Puppet module for Keeper Secrets Manager integration with deferred functions for secure runtime secret retrieval",
"summary": "Puppet module for Keeper Secrets Manager integration with deferred functions for secure runtime secrets retrieval",
"source": "https://github.com/Keeper-Security/secrets-manager",
"project_page": "https://github.com/Keeper-Security/secrets-manager/tree/master/integration/keeper_secrets_manager_puppet",
"issues_url": "https://github.com/Keeper-Security/secrets-manager/issues",
Expand Down