Class: Chef::Knife::EncryptedAttributeCreate

Inherits:
Core::EncryptedAttributeBase show all
Includes:
Core::EncryptedAttributeDepends, Core::EncryptedAttributeEditorOptions
Defined in:
lib/chef/knife/encrypted_attribute_create.rb

Overview

knife encrypted attribute create command.

$ knife encrypted attribute create NODE ATTRIBUTE (options)

Instance Method Summary collapse

Methods included from Core::EncryptedAttributeEditorOptions

#edit_data, #edit_data_obj_to_string, #edit_data_run_editor, #edit_data_run_editor_command, #edit_data_string_to_obj, included

Methods included from Core::EncryptedAttributeDepends

included

Methods inherited from Core::EncryptedAttributeBase

#assert_attribute_does_not_exist, #assert_attribute_exists, #assert_attribute_readable, #attribute_path_to_ary, #attribute_path_to_ary_read_escape, #die, #option_assert, #parse_args

Instance Method Details

#assert_valid_argsObject

Raises:

  • (ArgumentError)

    if the attribute path format is wrong.



46
47
48
49
# File 'lib/chef/knife/encrypted_attribute_create.rb', line 46

def assert_valid_args
  # check if the encrypted attribute already exists
  assert_attribute_does_not_exist(@node_name, @attr_ary)
end

#runObject

Runs knife command.

Returns:

  • void

Raises:

  • (RuntimeError)

    if the editing command fails.

  • (ArgumentError)

    if the attribute path format or the user list is wrong.

  • (UnacceptableEncryptedAttributeFormat)

    if encrypted attribute format is wrong or does not exist.

  • (UnsupportedEncryptedAttributeFormat)

    if encrypted attribute format is not supported or unknown.

  • (EncryptionFailure)

    if there are encryption errors.

  • (MessageAuthenticationFailure)

    if HMAC calculation error.

  • (InvalidPublicKey)

    if it is not a valid RSA public key.

  • (InvalidKey)

    if the RSA key format is wrong.

  • (InsufficientPrivileges)

    if you lack enough privileges to read the keys from the Chef Server.

  • (ClientNotFound)

    if client does not exist.

  • (Net::HTTPServerException)

    for Chef Server HTTP errors.

  • (RequirementsFailure)

    if the specified encrypted attribute version cannot be used.

  • (SearchFailure)

    if there is a Chef search error.

  • (SearchFatalError)

    if the Chef search response is wrong.

  • (InvalidSearchKeys)

    if search keys structure is wrong.



74
75
76
77
78
79
80
81
82
83
84
# File 'lib/chef/knife/encrypted_attribute_create.rb', line 74

def run
  parse_args

  # create encrypted attribute
  output = edit_data(nil, config[:input_format])
  enc_attr =
    Chef::EncryptedAttribute.new(
      Chef::Config[:knife][:encrypted_attributes]
    )
  enc_attr.create_on_node(@node_name, @attr_ary, output)
end