thalesgroup.ciphertrust.cm_resource_delete module – Delete CipherTrust Manager resource using ID

Note

This module is part of the thalesgroup.ciphertrust collection (version 1.0.2).

It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install thalesgroup.ciphertrust.

To use it in a playbook, specify: thalesgroup.ciphertrust.cm_resource_delete.

New in thalesgroup.ciphertrust 1.0.0

Synopsis

  • This is a Thales CipherTrust Manager module for working with the CipherTrust Manager APIs, more specifically delete resource APIs.

Parameters

Parameter

Comments

key

string

This is a string type of option that can have either the name of the ID of the resource to be deleted

localNode

dictionary / required

this holds the connection parameters required to communicate with an instance of CipherTrust Manager (CM)

holds IP/FQDN of the server, username, password, and port

auth_domain_path

string / required

user’s domain path

password

string / required

admin password of CM

server_ip

string / required

CM Server IP or FQDN

server_port

integer / required

Port on which CM server is listening

server_private_ip

string / required

internal or private IP of the CM Server, if different from the server_ip

user

string / required

admin username of CM

verify

boolean / required

if SSL verification is required

Choices:

  • false

  • true

resource_type

string / required

This is a string type of option that can hold the resource type.

Choices:

  • "keys"

  • "protection-policies"

  • "access-policies"

  • "user-sets"

  • "interfaces"

  • "character-sets"

  • "users"

  • "dpg-policies"

  • "client-profiles"

  • "masking-formats"

  • "resourceset"

  • "signatureset"

  • "userset"

  • "processset"

  • "cte-policy"

  • "cte-client-group"

  • "csigroup"

  • "cte-client"

  • "azure-key-vault"

  • "azure-secret"

  • "azure-certificate"

  • "azure-key"

  • "cluster"

Examples

# Delete Resource at CipherTrust Manager
- name: "Delete key on Ciphertrust Manager"
  thalesgroup.ciphertrust.cm_resource_delete:
    localNode:
        server_ip: "IP/FQDN of CipherTrust Manager"
        server_private_ip: "Private IP in case that is different from above"
        server_port: 5432
        user: "CipherTrust Manager Username"
        password: "CipherTrust Manager Password"
        verify: false
    key: "resource_id"
    resource_type: "keys"

Authors

  • Anurag Jain (@anugram)