Skip to content

Commit 6e655df

Browse files
authored
Looker gemini_enabled field added to Instance (#15193)
1 parent 9c8a2e3 commit 6e655df

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

mmv1/products/looker/Instance.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,10 @@ properties:
287287
type: Boolean
288288
description: |
289289
FIPS 140-2 Encryption enablement for Looker (Google Cloud Core).
290+
- name: 'geminiEnabled'
291+
type: Boolean
292+
description: |
293+
Gemini enablement for Looker (Google Cloud Core).
290294
- name: 'ingressPrivateIp'
291295
type: String
292296
description: |

mmv1/templates/terraform/examples/looker_instance_enterprise_full.tf.tmpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ resource "google_looker_instance" "{{$.PrimaryResourceId}}" {
44
region = "us-central1"
55
private_ip_enabled = true
66
public_ip_enabled = false
7+
gemini_enabled = true
78
reserved_range = "${google_compute_global_address.looker_range.name}"
89
consumer_network = google_compute_network.looker_network.id
910
admin_settings {

mmv1/templates/terraform/examples/looker_instance_full.tf.tmpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ resource "google_looker_instance" "{{$.PrimaryResourceId}}" {
33
platform_edition = "LOOKER_CORE_STANDARD_ANNUAL"
44
region = "us-central1"
55
public_ip_enabled = true
6+
gemini_enabled = true
67
admin_settings {
78
allowed_email_domains = ["google.com"]
89
}

0 commit comments

Comments
 (0)