We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a1efaa commit 21c7cfeCopy full SHA for 21c7cfe
ocne2/build.yml
@@ -15,8 +15,8 @@
15
boot_volume_size_in_gbs: "{{ item.value.boot_volume_size_in_gbs | default(50) | int }}"
16
shape: "{{ instance_shape }}"
17
shape_config:
18
- ocpus: "{{ instance_ocpus }}"
19
- memory_in_gbs: "{{ instance_memory }}"
+ ocpus: "{{ item.value.instance_ocpus | default(instance_ocpus) }}"
+ memory_in_gbs: "{{ item.value.instance_memory | default(instance_memory) }}"
20
create_vnic_details:
21
assign_public_ip: true
22
hostname_label: "{{ item.value.instance_name | default('instance-'~timestamp) }}"
0 commit comments