thalesgroup.ciphertrust.cte_signature_set (1.0.0) — module

Create and manage CTE Signature Sets

| "added in version" 1.0.0 of thalesgroup.ciphertrust"

Authors: Anurag Jain, Developer Advocate Thales Group

Install collection

Install with ansible-galaxy collection install thalesgroup.ciphertrust:==1.0.0


Add to requirements.yml

  collections:
    - name: thalesgroup.ciphertrust
      version: 1.0.0

Description

Create and edit CTE signature set or add, edit, or remove a signature to or from the signature set

Inputs

    
id:
    description:
    - Identifier of the CTE SignatureSet to be patched
    type: str

name:
    description:
    - Name of the signature set
    type: str

op_type:
    choices:
    - create
    - patch
    - add_signature
    - get_signature
    - delete_signature
    - sign_app
    - query_sign_app
    - cancel_sign_app
    description: Operation to be performed
    required: true
    type: str

client_id:
    description:
    - ID of the client where the signing request is to be sent
    type: str

localNode:
    description:
    - 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
    required: true
    suboptions:
      password:
        description: admin password of CM
        required: true
        type: str
      server_ip:
        description: CM Server IP or FQDN
        required: true
        type: str
      server_port:
        default: 5432
        description: Port on which CM server is listening
        required: true
        type: int
      server_private_ip:
        description: internal or private IP of the CM Server, if different from the server_ip
        required: true
        type: str
      user:
        description: admin username of CM
        required: true
        type: str
      verify:
        default: false
        description: if SSL verification is required
        required: true
        type: bool
    type: dict

signatures:
    description:
    - Name of the signature set
    elements: dict
    type: list

description:
    description:
    - Description of the signature set
    type: str

source_list:
    description:
    - Path of the directory or file to be signed. If a directory is specified, all files
      in the directory and its subdirectories are signed.
    elements: str
    type: list

signature_id:
    description:
    - Identifier of the Signature within the CTE SignatureSet to be patched
    type: str