ripclawffb / ripclawffb.helix_core / 1.0.4 / module / helix_core_configurable This module will allow you to set config options on Perforce Helix Core Authors: Asif Shaikh (@ripclawffb) preview | supported by communityripclawffb.helix_core.helix_core_configurable (1.0.4) — module
Install with ansible-galaxy collection install ripclawffb.helix_core:==1.0.4
collections: - name: ripclawffb.helix_core version: 1.0.4
Configurables allow you to customize a Perforce service. Configurable settings might affect the server, the client, or a proxy.
This module supports check mode.
# Set auth.id configurable for any server - name: Set auth.id helix_core_configurable: state: present name: auth.id value: master.1 server: '1666' user: bruno charset: none password: ''
# Unset auth.id configurable for specific server - name: Unset auth.id helix_core_configurable: state: absent name: auth.id value: master.1 serverid: master.1 server: '1666' user: bruno password: '' charset: auto
name: description: - The name of the configurable that needs to be set required: true type: str user: aliases: - p4user description: - A user with super user access - Can also use 'P4USER' environment variable required: true type: str state: choices: - present - absent default: present description: - Determines if the configurable is set or removed type: str value: description: - The value of named configurable required: true type: str server: aliases: - p4port description: - The hostname/ip and port of the server (perforce:1666) - Can also use 'P4PORT' environment variable required: true type: str charset: aliases: - p4charset default: none description: - Character set used for translation of unicode files - Can also use 'P4CHARSET' environment variable required: false type: str password: aliases: - p4passwd description: - The super user password - Can also use 'P4PASSWD' environment variable required: true type: str serverid: default: any description: - The server ID of the helix server required: false type: str