Skip to content

Commit

Permalink
Adding deployment_type to GA (#12634)
Browse files Browse the repository at this point in the history
  • Loading branch information
unnatinadupalli authored Dec 26, 2024
1 parent acd806c commit a8d9f29
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion mmv1/products/parallelstore/Instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ properties:
DIRECTORY_STRIPE_LEVEL_MAX
- name: deploymentType
type: String
min_version: 'beta'
description: |
Parallelstore Instance deployment type.
Possible values:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ resource "google_parallelstore_instance" "{{$.PrimaryResourceId}}" {
network = google_compute_network.network.name
file_stripe_level = "FILE_STRIPE_LEVEL_MIN"
directory_stripe_level = "DIRECTORY_STRIPE_LEVEL_MIN"
deployment_type = "SCRATCH"
labels = {
test = "value"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ resource "google_parallelstore_instance" "instance" {
capacity_gib = 12000
network = google_compute_network.network.name
reserved_ip_range = google_compute_global_address.private_ip_alloc.name
deployment_type = "SCRATCH"
file_stripe_level = "FILE_STRIPE_LEVEL_MIN"
directory_stripe_level = "DIRECTORY_STRIPE_LEVEL_MIN"
labels = {
Expand Down

0 comments on commit a8d9f29

Please sign in to comment.