This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
forked from enricoros/big-AGI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
94 additions
and
30 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,19 +1,52 @@ | ||
variable "azure_subscription_id" {} | ||
variable "openai_api_key" {} | ||
variable "anthropic_api_key" {} | ||
variable "gemini_api_key" {} | ||
variable "azure_subscription_id" { | ||
type = string | ||
description = "Azure Subscription ID - Found in the Azure portal under 'Subscriptions'." | ||
} | ||
|
||
variable "azure_ad_tenant_id" { | ||
type = string | ||
description = "Azure AD Tenant ID - Found in the Azure portal under 'Azure Entra ID' > 'Overview'." | ||
} | ||
|
||
variable "azure_ad_client_id" { | ||
type = string | ||
description = "Azure AD Client ID - Found in the Azure portal under 'Azure Entra ID' > 'App registrations' > 'Your Application' > 'Overview'." | ||
} | ||
|
||
variable "azure_ad_client_secret" { | ||
type = string | ||
description = "Azure AD Client Secret - Generated in the Azure portal under 'Azure Entra ID' > 'App registrations' > 'Your Application' > 'Certificates & secrets'." | ||
} | ||
|
||
variable "openai_api_key" { | ||
type = string | ||
description = "OpenAI API Key - Retrieved from the OpenAI API Platform." | ||
} | ||
|
||
variable "anthropic_api_key" { | ||
type = string | ||
description = "Anthropic API Key - Retrieved from the Anthropic API console." | ||
} | ||
|
||
variable "gemini_api_key" { | ||
type = string | ||
description = "Gemini API Key - Retrieved from the Google Cloud AI dashboard." | ||
} | ||
|
||
variable "allowed_ip" { | ||
type = string | ||
default = "X.X.X.X/32" | ||
type = string | ||
default = "X.X.X.X/32" | ||
description = "IP address allowed to access resources. Use CIDR notation." | ||
} | ||
|
||
variable "project_name" { | ||
type = string | ||
default = "big-agi" | ||
type = string | ||
default = "big-agi" | ||
description = "Name of the project that determines resource names in Azure." | ||
} | ||
|
||
variable "location" { | ||
type = string | ||
default = "Norway East" | ||
type = string | ||
default = "Norway East" | ||
description = "Azure region where resources will be deployed." | ||
} |