vars.tf 518 B

1234567891011121314151617181920
  1. variable "org" {
  2. type = string
  3. description = "GitHub Organization"
  4. }
  5. variable "github_app_id" {
  6. type = number
  7. description = "Github App ID from the App Configuration"
  8. }
  9. variable "vpc_id" { type = string }
  10. variable "azs" { type = list(string) }
  11. variable "public_subnets" { type = list(string) }
  12. variable "private_subnets" { type = list(string) }
  13. variable "tags" {
  14. description = "Tags to add to the resource (in addition to global standard tags)"
  15. type = map(any)
  16. default = {}
  17. }