Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix spell issues #557

Merged
merged 2 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ resource "google_bigquery_table" "default" {
metadata_cache_mode = "AUTOMATIC"
}

# This sets the maxiumum staleness of the metadata cache to 10 hours.
# This sets the maximum staleness of the metadata cache to 10 hours.
max_staleness = "0-0 0 10:0:0"

deletion_protection = false
Expand Down
2 changes: 1 addition & 1 deletion compute/add_persistent_disk/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ resource "google_compute_instance" "test_node" {
}
}

# Ignore changes for persistant disk attachments
# Ignore changes for persistent disk attachments
lifecycle {
ignore_changes = [attached_disk]
}
Expand Down
2 changes: 1 addition & 1 deletion compute/mig_stateful_disk_basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Made to resemble:
* gcloud compute instance-groups managed create igm-stateful-disk-basic \
* --template example-tempalte \
* --template example-template \
* --size 1 \
* --stateful-disk device-name=example-disk,auto-delete=NEVER
*/
Expand Down
2 changes: 1 addition & 1 deletion vertex_ai/endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ provider "google" {
}

# [START aiplatform_create_endpoint_sample]
# Endpoin name must be unique for the project
# Endpoint name must be unique for the project
resource "random_id" "endpoint_id" {
byte_length = 4
}
Expand Down
Loading