juju_storage_pool (Data Source)¶
A data source representing a Juju Storage Pool.
Example Usage¶
data "juju_model" "my_model" {
name = "default"
}
data "juju_storage_pool" "my_storage_pool_data_source" {
name = "my_storage_pool"
model_uuid = data.juju_model.my_model.uuid
}
Schema¶
Required¶
model_uuid(String) The uuid of the model containing the storage pool.name(String) The name of the storage pool.