mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
fix: ssl creation support GCP-managed SSL cert
This commit is contained in:
parent
99ac225a1a
commit
c42abe7648
1 changed files with 32 additions and 4 deletions
|
@ -54,7 +54,7 @@ options:
|
||||||
- The certificate in PEM format.
|
- The certificate in PEM format.
|
||||||
- The certificate chain must be no greater than 5 certs long.
|
- The certificate chain must be no greater than 5 certs long.
|
||||||
- The chain must include at least one intermediate cert.
|
- The chain must include at least one intermediate cert.
|
||||||
required: true
|
required: false
|
||||||
type: str
|
type: str
|
||||||
description:
|
description:
|
||||||
description:
|
description:
|
||||||
|
@ -71,10 +71,23 @@ options:
|
||||||
which cannot be a dash.
|
which cannot be a dash.
|
||||||
required: false
|
required: false
|
||||||
type: str
|
type: str
|
||||||
|
managed:
|
||||||
|
description:
|
||||||
|
- The configuration and status of a managed SSL certificate.
|
||||||
|
required: false
|
||||||
|
type: dict
|
||||||
|
type:
|
||||||
|
description:
|
||||||
|
- Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified,
|
||||||
|
the certificate is self-managed and the fields certificate and privateKey are used.
|
||||||
|
choices:
|
||||||
|
- MANAGED
|
||||||
|
- SELF_MANAGED
|
||||||
|
type: str
|
||||||
private_key:
|
private_key:
|
||||||
description:
|
description:
|
||||||
- The write-only private key in PEM format.
|
- The write-only private key in PEM format.
|
||||||
required: true
|
required: false
|
||||||
type: str
|
type: str
|
||||||
project:
|
project:
|
||||||
description:
|
description:
|
||||||
|
@ -209,6 +222,17 @@ privateKey:
|
||||||
- The write-only private key in PEM format.
|
- The write-only private key in PEM format.
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
|
managed:
|
||||||
|
description:
|
||||||
|
- The configuration and status of a managed SSL certificate.
|
||||||
|
returned: success
|
||||||
|
type: dict
|
||||||
|
type:
|
||||||
|
description:
|
||||||
|
- Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified,
|
||||||
|
the certificate is self-managed and the fields certificate and privateKey are used.
|
||||||
|
returned: success
|
||||||
|
type: str
|
||||||
'''
|
'''
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
@ -230,10 +254,12 @@ def main():
|
||||||
module = GcpModule(
|
module = GcpModule(
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
||||||
certificate=dict(required=True, type='str'),
|
certificate=dict(required=False, type='str'),
|
||||||
description=dict(type='str'),
|
description=dict(type='str'),
|
||||||
name=dict(type='str'),
|
name=dict(type='str'),
|
||||||
private_key=dict(required=True, type='str', no_log=True),
|
private_key=dict(required=False, type='str', no_log=True),
|
||||||
|
managed=dict(required=False, type='dict'),
|
||||||
|
type=dict(required=False, type='str'),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -290,6 +316,8 @@ def resource_to_request(module):
|
||||||
u'description': module.params.get('description'),
|
u'description': module.params.get('description'),
|
||||||
u'name': module.params.get('name'),
|
u'name': module.params.get('name'),
|
||||||
u'privateKey': module.params.get('private_key'),
|
u'privateKey': module.params.get('private_key'),
|
||||||
|
u'managed': module.params.get('managed'),
|
||||||
|
u'type': module.params.get('type'),
|
||||||
}
|
}
|
||||||
return_vals = {}
|
return_vals = {}
|
||||||
for k, v in request.items():
|
for k, v in request.items():
|
||||||
|
|
Loading…
Add table
Reference in a new issue