0
0
llucycodes42
The code declares a resource called "ibm_storage_block" with the following properties:
type - This is set to "", which means the resource is not defined yet.
datacenter - This is set to the value of the myResourceName instance's datacenter.
capacity - This is set to 20.
iops - This is set to 0.25.
snapshot_capacity - This is set to 10.
os_format_type - This is set to "".
notes - This is set to "notes".
Shortcut: tf_ibm_storage_block
resource "ibm_storage_block" "${myResourceName}" {
type = ""
datacenter = "${ibm_compute_vm_instance.myResourceName.datacenter}"
capacity = 20
iops = 0.25
snapshot_capacity = 10
os_format_type = ""
notes = "notes"
}