Skip to content

Commit f91e599

Browse files
Fix formatting inconsistencies in Terraform files (#1027)
1 parent 2e33be5 commit f91e599

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tutorials-and-examples/langchain-chatbot/terraform/database.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ resource "google_sql_database_instance" "langchain_storage" {
4545
root_password = random_password.db_password.result
4646
settings {
4747
edition = "ENTERPRISE"
48-
tier = var.db_tier
48+
tier = var.db_tier
4949
ip_configuration {
5050
ipv4_enabled = false
5151
private_network = data.google_compute_network.database.id
@@ -63,4 +63,4 @@ resource "google_sql_database" "langchain_storage" {
6363
project = var.project_id
6464
name = var.db_name
6565
instance = google_sql_database_instance.langchain_storage.name
66-
}
66+
}

tutorials-and-examples/langchain-chatbot/terraform/variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ variable "app_name" {
2626
variable "k8s_namespace" {
2727
type = string
2828
description = "Kubernetes namespace where resources are deployed"
29-
default = "default"
29+
default = "default"
3030
}
3131

3232
variable "k8s_app_image" {
@@ -104,7 +104,7 @@ variable "oauth_client_secret" {
104104
}
105105

106106
variable "members_allowlist" {
107-
type = list(string)
107+
type = list(string)
108108
}
109109

110110
variable "db_instance_name" {

0 commit comments

Comments
 (0)