File tree 2 files changed +4
-4
lines changed
tutorials-and-examples/langchain-chatbot/terraform
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ resource "google_sql_database_instance" "langchain_storage" {
45
45
root_password = random_password. db_password . result
46
46
settings {
47
47
edition = " ENTERPRISE"
48
- tier = var. db_tier
48
+ tier = var. db_tier
49
49
ip_configuration {
50
50
ipv4_enabled = false
51
51
private_network = data. google_compute_network . database . id
@@ -63,4 +63,4 @@ resource "google_sql_database" "langchain_storage" {
63
63
project = var. project_id
64
64
name = var. db_name
65
65
instance = google_sql_database_instance. langchain_storage . name
66
- }
66
+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ variable "app_name" {
26
26
variable "k8s_namespace" {
27
27
type = string
28
28
description = " Kubernetes namespace where resources are deployed"
29
- default = " default"
29
+ default = " default"
30
30
}
31
31
32
32
variable "k8s_app_image" {
@@ -104,7 +104,7 @@ variable "oauth_client_secret" {
104
104
}
105
105
106
106
variable "members_allowlist" {
107
- type = list (string )
107
+ type = list (string )
108
108
}
109
109
110
110
variable "db_instance_name" {
You can’t perform that action at this time.
0 commit comments