variables.tf 295 B

12345678910111213141516171819
  1. variable "github_app_key_base64" {}
  2. variable "github_app_id" {}
  3. variable "runner_os" {
  4. type = string
  5. default = "linux"
  6. }
  7. variable "ami_name_filter" {
  8. type = string
  9. default = "github-runner-amzn2-x86_64-*"
  10. }
  11. variable "aws_region" {
  12. type = string
  13. default = "eu-west-1"
  14. }