-
-
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.
Merge pull request #12 from PartTimeLegend/terraform
Add descriptions to terraform variables
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,52 @@ | ||
variable "environment" { | ||
type = string | ||
description = "The environment to deploy this app service to e.g., dev, test, staging, prod." | ||
} | ||
|
||
variable "location" { | ||
type = string | ||
default = "UK South" | ||
description = "The Azure location for deploying this this application to." | ||
} | ||
|
||
variable "discord_token" { | ||
type = string | ||
sensitive = true | ||
default = "Discord oauth2 token. SENSITIVE." | ||
} | ||
|
||
variable "app_name" { | ||
type = string | ||
default = "hammy" | ||
description = "The app name to use." | ||
} | ||
|
||
variable "container" { | ||
type = string | ||
default = "parttimelegend/hammy-mchamilton:latest" | ||
description = "Container name" | ||
} | ||
|
||
variable "container_registry" { | ||
type = string | ||
default = "https://ghcr.io" | ||
description = "Container registry URL" | ||
} | ||
|
||
variable "os_type" { | ||
type = string | ||
default = "Linux" | ||
description = "OS Type (Windows / Linux)" | ||
} | ||
|
||
variable "app_service_sku_name" { | ||
type = string | ||
default = "P1v2" | ||
description = "The sku to use for the app service" | ||
} | ||
|
||
variable "keyvault_sku_name" { | ||
type = string | ||
default = "standard" | ||
description = "The SKU to use for the KeyVault" | ||
} |