You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/v2/metadata.display.yaml
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,11 @@ spec:
69
69
memory:
70
70
name: memory
71
71
title: Memory
72
-
subtext: Memory to allocate to each instance of this container
72
+
subtext: Memory to allocate to each instance of this container (e.g., 256Mi, 4Gi).
73
+
nvidia_gpu:
74
+
name: nvidia_gpu
75
+
title: Nvidia GPU
76
+
subtext: Number of GPUs to allocate to each instance of this container. Requires a minimum of 4 vCPUs and 16Gi of memory Maximum instance count for this template is 3. A node selector must be provided for GPU allocation.
Copy file name to clipboardExpand all lines: modules/v2/metadata.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -322,6 +322,10 @@ spec:
322
322
description: Users/SAs to be given invoker access to the service. Grant invoker access by specifying the users or service accounts (SAs). Use allUsers for public access, allAuthenticatedUsers for access by logged-in Google users, or provide a list of specific users/SAs. [See the complete list of available options here](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/cloud_run_v2_service_iam#member\/members-1)
323
323
varType: list(string)
324
324
defaultValue: []
325
+
- name: iap_members
326
+
description: Valid only when launch stage is set to 'BETA'. IAP is enabled automatically when users or service accounts (SAs) are provided. Use allUsers for public access, allAuthenticatedUsers for any Google-authenticated user, or specify individual users/SAs. [More info](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/iap_web_cloud_run_service_iam#member\/members-2)
327
+
varType: list(string)
328
+
defaultValue: []
325
329
- name: vpc_access
326
330
description: Configure this to enable your service to send traffic to a Virtual Private Cloud. Set egress to ALL_TRAFFIC or PRIVATE_RANGES_ONLY. Choose a connector or network_interfaces (for direct VPC egress). [More info](https://cloud.google.com/run/docs/configuring/connecting-vpc)
327
331
varType: |-
@@ -495,10 +499,6 @@ spec:
495
499
description: The sandbox environment to host this Revision.
496
500
varType: string
497
501
defaultValue: EXECUTION_ENVIRONMENT_GEN2
498
-
- name: iap_members
499
-
description: Valid only when launch stage is set to 'BETA'. IAP is enabled automatically when users or service accounts (SAs) are provided. Use allUsers for public access, allAuthenticatedUsers for any Google-authenticated user, or specify individual users/SAs. [More info](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/iap_web_cloud_run_service_iam#member\/members-2)
500
-
varType: list(string)
501
-
defaultValue: []
502
502
outputs:
503
503
- name: apphub_service_uri
504
504
description: Service URI in CAIS style to be used by Apphub.
Copy file name to clipboardExpand all lines: modules/v2/variables.tf
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,12 @@ variable "members" {
156
156
default=[]
157
157
}
158
158
159
+
variable"iap_members" {
160
+
type=list(string)
161
+
description="Valid only when launch stage is set to 'BETA'. IAP is enabled automatically when users or service accounts (SAs) are provided. Use allUsers for public access, allAuthenticatedUsers for any Google-authenticated user, or specify individual users/SAs. [More info](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/iap_web_cloud_run_service_iam#member\\/members-2)"
description="Valid only when launch stage is set to 'BETA'. IAP is enabled automatically when users or service accounts (SAs) are provided. Use allUsers for public access, allAuthenticatedUsers for any Google-authenticated user, or specify individual users/SAs. [More info](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/iap_web_cloud_run_service_iam#member\\/members-2)"
0 commit comments