mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
43 lines
1.1 KiB
Terraform
43 lines
1.1 KiB
Terraform
variable "github_username" {
|
|
type = string
|
|
description = "The username for the GitHub account."
|
|
default = "USERNAME"
|
|
sensitive = true
|
|
}
|
|
|
|
variable "github_pat" {
|
|
type = string
|
|
description = "The personal access token (PAT) for the GitHub account."
|
|
sensitive = true
|
|
}
|
|
|
|
variable "resource_group_location" {
|
|
type = string
|
|
default = "eastus"
|
|
description = "Location of the resource group."
|
|
}
|
|
|
|
variable "resource_group_name_prefix" {
|
|
type = string
|
|
default = "example"
|
|
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
|
|
}
|
|
|
|
variable "sys_node_count" {
|
|
type = number
|
|
description = "The initial quantity of nodes for the node pool."
|
|
default = 2
|
|
}
|
|
|
|
variable "usr_node_count" {
|
|
type = number
|
|
description = "The initial quantity of nodes for the node pool."
|
|
default = 3
|
|
}
|
|
|
|
variable "username" {
|
|
type = string
|
|
description = "The admin username for the new cluster."
|
|
default = "azureadmin"
|
|
}
|