forked from TerryHowe/ansible-modules-hashivault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhashivault_azure_secret_engine_config.py
173 lines (157 loc) · 6.26 KB
/
hashivault_azure_secret_engine_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/env python
from ansible.module_utils.hashivault import hashivault_argspec
from ansible.module_utils.hashivault import hashivault_auth_client
from ansible.module_utils.hashivault import hashivault_init
from ansible.module_utils.hashivault import hashiwrapper
import json, sys
ANSIBLE_METADATA = {'status': ['stableinterface'], 'supported_by': 'community', 'version': '1.1'}
DOCUMENTATION = '''
---
module: hashivault_azure_secret_engine_config
version_added: "3.17.6"
short_description: Hashicorp Vault azure secret engine config
description:
- Module to configure an azure secret engine via variables or json file
options:
url:
description:
- url for vault
default: to environment variable VAULT_ADDR
ca_cert:
description:
- "path to a PEM-encoded CA cert file to use to verify the Vault server TLS certificate"
default: to environment variable VAULT_CACERT
ca_path:
description:
- "path to a directory of PEM-encoded CA cert files to verify the Vault server TLS certificate : if ca_cert
is specified, its value will take precedence"
default: to environment variable VAULT_CAPATH
client_cert:
description:
- "path to a PEM-encoded client certificate for TLS authentication to the Vault server"
default: to environment variable VAULT_CLIENT_CERT
client_key:
description:
- "path to an unencrypted PEM-encoded private key matching the client certificate"
default: to environment variable VAULT_CLIENT_KEY
verify:
description:
- "if set, do not verify presented TLS certificate before communicating with Vault server : setting this
variable is not recommended except during testing"
default: to environment variable VAULT_SKIP_VERIFY
authtype:
description:
- "authentication type to use: token, userpass, github, ldap, approle"
default: token
token:
description:
- token for vault
default: to environment variable VAULT_TOKEN
username:
description:
- username to login to vault.
default: to environment variable VAULT_USER
password:
description:
- password to login to vault.
default: to environment variable VAULT_PASSWORD
mount_point:
description:
- name of the secret engine mount name.
default: azure
subscription_id:
description:
- azure SPN subscription id
tenant_id:
description:
- azure SPN tenant id
client_id:
description:
- azure SPN client id
client_secret:
description:
- azure SPN client secret
config_file:
description:
- alternate way to pass SPN vars. must be json object
environment:
description:
- azure environment. you probably do not want to change this
default: AzurePublicCloud
'''
EXAMPLES = '''
---
- hosts: localhost
tasks:
- hashivault_azure_secret_engine_config:
subscription_id: 1234
tenant_id: 5689-1234
client_id: 1012-1234
client_secret: 1314-1234
- hashivault_azure_secret_engine_config:
config_file: /home/drewbuntu/azure-config.json
mount_point: azure
'''
def main():
argspec = hashivault_argspec()
argspec['mount_point'] = dict(required=False, type='str', default='azure')
argspec['subscription_id'] = dict(required=False, type='str')
argspec['tenant_id'] = dict(required=False, type='str')
argspec['client_id'] = dict(required=False, type='str')
argspec['client_secret'] = dict(required=False, type='str')
argspec['environment'] = dict(required=False, type='str', default='AzurePublicCloud')
argspec['config_file'] = dict(required=False, type='str', default=None)
required_together=[['subscription_id', 'client_id', 'client_secret', 'tenant_id']]
module = hashivault_init(argspec, supports_check_mode=True, required_together=required_together)
result = hashivault_azure_secret_engine_config(module)
if result.get('failed'):
module.fail_json(**result)
else:
module.exit_json(**result)
@hashiwrapper
def hashivault_azure_secret_engine_config(module):
params = module.params
client = hashivault_auth_client(params)
changed = False
config_file = params.get('config_file')
mount_point = params.get('mount_point')
desired_state = dict()
current_state = dict()
# do not want a trailing slash in mount_point
if mount_point[-1]:
mount_point = mount_point.strip('/')
# if config_file is set, set sub_id, ten_id, client_id, client_secret from file
# else set from passed args
if config_file:
desired_state = json.loads(open(params.get('config_file'), 'r').read())
if 'environment' not in desired_state:
desired_state['environment'] = 'AzurePublicCloud'
else:
desired_state['tenant_id'] = params.get('tenant_id')
desired_state['subscription_id'] = params.get('subscription_id')
desired_state['client_id'] = params.get('client_id')
desired_state['client_secret'] = params.get('client_secret')
desired_state['environment'] = params.get('environment')
# check if engine is enabled
try:
if (mount_point + "/") not in client.sys.list_mounted_secrets_engines()['data'].keys():
return {'failed': True, 'msg': 'secret engine is not enabled', 'rc': 1}
except:
if module.check_mode:
changed = True
else:
return {'failed': True, 'msg': 'secret engine is not enabled or namespace does not exist', 'rc': 1}
# check if current config matches desired config values, if they match, set changed to false to prevent action
try:
current_state = client.secrets.azure.read_config()
except:
changed = True
for k, v in current_state.items():
if v != desired_state[k]:
changed = True
# if configs dont match and checkmode is off, complete the change
if changed == True and not module.check_mode:
result = client.secrets.azure.configure(mount_point=mount_point, **desired_state)
return {'changed': changed}
if __name__ == '__main__':
main()