@@ -36,9 +36,23 @@ inputs:
36
36
google_compute_instance_boot_disk_size :
37
37
description : Google Cloud attached boot disk size in GB.
38
38
required : true
39
+ google_compute_instance_boot_disk_type :
40
+ description : Google Cloud type of attached boot disk.
41
+ required : false
42
+ default : " pd-standard"
43
+ google_compute_instance_boot_disk_snapshot :
44
+ description : Google Cloud snapshot used to restore the boot disk.
45
+ required : false
39
46
google_compute_instance_data_disk_size :
40
47
description : Google Cloud attached data disk size in GB.
41
48
required : true
49
+ google_compute_instance_data_disk_type :
50
+ description : Google Cloud type of attached data disk.
51
+ required : false
52
+ default : " pd-standard"
53
+ google_compute_instance_data_disk_snapshot :
54
+ description : Google Cloud snapshot used to restore the data disk.
55
+ required : false
42
56
google_application_credentials :
43
57
description : Google Cloud application credentials (service account).
44
58
required : true
@@ -174,7 +188,11 @@ runs:
174
188
google_zone = "${{ inputs.google_zone }}"
175
189
google_machine_type = "${{ inputs.google_machine_type }}"
176
190
google_compute_instance_boot_disk_size = "${{ inputs.google_compute_instance_boot_disk_size }}"
191
+ google_compute_instance_boot_disk_type = "${{ inputs.google_compute_instance_boot_disk_type }}"
192
+ google_compute_instance_boot_disk_snapshot = "${{ inputs.google_compute_instance_boot_disk_snapshot }}"
177
193
google_compute_instance_data_disk_size = "${{ inputs.google_compute_instance_data_disk_size }}"
194
+ google_compute_instance_data_disk_type = "${{ inputs.google_compute_instance_data_disk_type }}"
195
+ google_compute_instance_data_disk_snapshot = "${{ inputs.google_compute_instance_data_disk_snapshot }}"
178
196
google_service_credentials_json_file = "./google-application-credentials.json"
179
197
mithril_use_p2p_network = "${{ inputs.mithril_use_p2p_network }}"
180
198
mithril_api_domain = "${{ inputs.mithril_api_domain }}"
0 commit comments