Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions lustre_instance_basic/main.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
resource "google_lustre_instance" "instance" {
instance_id = "my-instance-${local.name_suffix}"
location = "us-central1-a"
description = "test lustre instance"
filesystem = "testfs"
capacity_gib = 18000
network = data.google_compute_network.lustre-network.id
labels = {
instance_id = "my-instance-${local.name_suffix}"
location = "us-central1-a"
description = "test lustre instance"
filesystem = "testfs"
capacity_gib = 18000
network = data.google_compute_network.lustre-network.id
per_unit_storage_throughput = 1000
labels = {
test = "value"
}
timeouts {
Expand Down