...
1/**
2 * Copyright 2022 Google LLC
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17```hcl
18resource "google_compute_region_disk" "regiondisk" {
19 name = "my-region-disk"
20 snapshot = google_compute_snapshot.snapdisk.id
21 type = "pd-ssd"
22 region = "us-central1"
23 physical_block_size_bytes = 4096
24
25 replica_zones = ["us-central1-a", "us-central1-f"]
26}
27
28resource "google_compute_disk" "disk" {
29 name = "my-disk"
30 image = "debian-cloud/debian-11"
31 size = 50
32 type = "pd-ssd"
33 zone = "us-central1-a"
34}
35
36resource "google_compute_snapshot" "snapdisk" {
37 name = "my-snapshot"
38 source_disk = google_compute_disk.disk.name
39 zone = "us-central1-a"
40}
41```
View as plain text