1234567891011121314151617181920 |
- variable "org" {
- type = string
- description = "GitHub Organization"
- }
- variable "github_app_id" {
- type = number
- description = "Github App ID from the App Configuration"
- }
- variable "vpc_id" { type = string }
- variable "azs" { type = list(string) }
- variable "public_subnets" { type = list(string) }
- variable "private_subnets" { type = list(string) }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map(any)
- default = {}
- }
|