diff --git a/.changeset/soft-socks-build.md b/.changeset/soft-socks-build.md new file mode 100644 index 0000000000..ee002d02e0 --- /dev/null +++ b/.changeset/soft-socks-build.md @@ -0,0 +1,5 @@ +--- +"infrastructure": minor +--- + +Langfuse infrastructure implemented diff --git a/apps/infrastructure/src/modules/chatbot/cognito_user.tf b/apps/infrastructure/src/modules/chatbot/cognito_user.tf index 97f94fe435..797f39629f 100644 --- a/apps/infrastructure/src/modules/chatbot/cognito_user.tf +++ b/apps/infrastructure/src/modules/chatbot/cognito_user.tf @@ -150,10 +150,10 @@ resource "aws_cognito_user" "master" { module "master_user_password" { source = "git::https://github.com/terraform-aws-modules/terraform-aws-ssm-parameter.git?ref=77d2c139784197febbc8f8e18a33d23eb4736879" # v1.1.0 - name = "/chatbot/monitoring/master_user_password" - value = random_password.master.result - type = "SecureString" - secure_type = true + name = "/chatbot/monitoring/master_user_password" + value = random_password.master.result + type = "SecureString" + secure_type = true } module "user_pool_client_id" {