diff --git a/plugins/modules/gcp_spanner_instance.py b/plugins/modules/gcp_spanner_instance.py index 72ee8c4..8458042 100644 --- a/plugins/modules/gcp_spanner_instance.py +++ b/plugins/modules/gcp_spanner_instance.py @@ -71,9 +71,15 @@ options: type: str node_count: description: - - The number of nodes allocated to this instance. + - The number of nodes allocated to this instance. At most one of either node_count + or processing_units can be present in terraform. . + required: false + type: int + processing_units: + description: + - The number of processing units allocated to this instance. At most one of processing_units + or node_count can be present in terraform. . required: false - default: '1' type: int labels: description: @@ -174,7 +180,14 @@ displayName: type: str nodeCount: description: - - The number of nodes allocated to this instance. + - The number of nodes allocated to this instance. At most one of either node_count + or processing_units can be present in terraform. . + returned: success + type: int +processingUnits: + description: + - The number of processing units allocated to this instance. At most one of processing_units + or node_count can be present in terraform. . returned: success type: int labels: @@ -207,7 +220,8 @@ def main(): name=dict(required=True, type='str'), config=dict(required=True, type='str'), display_name=dict(required=True, type='str'), - node_count=dict(default=1, type='int'), + node_count=dict(type='int'), + processing_units=dict(type='int'), labels=dict(type='dict'), ) ) @@ -262,6 +276,7 @@ def resource_to_request(module): u'config': module.params.get('config'), u'displayName': module.params.get('display_name'), u'nodeCount': module.params.get('node_count'), + u'processingUnits': module.params.get('processing_units'), u'labels': module.params.get('labels'), } return_vals = {} @@ -335,6 +350,7 @@ def response_to_hash(module, response): u'config': module.params.get('config'), u'displayName': response.get(u'displayName'), u'nodeCount': response.get(u'nodeCount'), + u'processingUnits': response.get(u'processingUnits'), u'labels': response.get(u'labels'), } @@ -386,7 +402,7 @@ def resource_to_update(module): instance = resource_to_request(module) instance['name'] = "projects/{0}/instances/{1}".format(module.params['project'], module.params['name']) instance['config'] = "projects/{0}/instanceConfigs/{1}".format(module.params['project'], instance['config']) - return {'instance': instance, 'fieldMask': "'name' ,'config' ,'displayName' ,'nodeCount' ,'labels'"} + return {'instance': instance, 'fieldMask': "'name' ,'config' ,'displayName' ,'nodeCount' ,'processingUnits' ,'labels'"} def decode_response(response, module): diff --git a/plugins/modules/gcp_spanner_instance_info.py b/plugins/modules/gcp_spanner_instance_info.py index 0f643de..1fc5fce 100644 --- a/plugins/modules/gcp_spanner_instance_info.py +++ b/plugins/modules/gcp_spanner_instance_info.py @@ -128,7 +128,14 @@ resources: type: str nodeCount: description: - - The number of nodes allocated to this instance. + - The number of nodes allocated to this instance. At most one of either node_count + or processing_units can be present in terraform. . + returned: success + type: int + processingUnits: + description: + - The number of processing units allocated to this instance. At most one of + processing_units or node_count can be present in terraform. . returned: success type: int labels: