-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from langchain-ai/infra/few-more-additions
fix: add external id, rename
- Loading branch information
Showing
5 changed files
with
125 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
variable "vpc_id" { | ||
description = "The VPC ID to deploy LangGraph Cloud into" | ||
type = string | ||
} | ||
|
||
variable "private_subnet_ids" { | ||
description = "The subnet ID to deploy LangGraph Cloud into. These will also be used to create a DB subnet." | ||
type = list(string) | ||
} | ||
|
||
variable "public_subnet_ids" { | ||
description = "The subnet ID to deploy LangGraph Cloud into." | ||
type = list(string) | ||
} | ||
|
||
variable "langgraph_role_arn" { | ||
description = "Role ARN for LangGraph Cloud that will be used to access resources. Needs to be able to assume role in your AWS account." | ||
type = string | ||
default = "arn:aws:iam::640174622193:role/HostBackendRole" | ||
} | ||
|
||
variable "langgraph_external_ids" { | ||
description = "External IDs for LangGraph Cloud that will be used to access resources. Needs to be able to assume role in your AWS account. These will typically be your organization ids." | ||
type = list(string) | ||
} |
File renamed without changes.