From 709aff7fcf0277f3e514fc69d031dc8d6e62607d Mon Sep 17 00:00:00 2001 From: Jason Birchall <31217584+jasonBirchall@users.noreply.github.com> Date: Fri, 12 Jan 2024 19:58:22 +0000 Subject: [PATCH] Complete variables population --- variables.tf | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/variables.tf b/variables.tf index 3f24745..a36a4bd 100644 --- a/variables.tf +++ b/variables.tf @@ -6,3 +6,47 @@ variable "application_name" { type = string description = "Name of application" } + +variable "name" { + type = string + description = "Repository name" +} + +variable "description" { + type = string + description = "Repository description" +} + +variable "homepage_url" { + type = string + description = "Repository homepage URL" + default = "" +} + +variable "secrets" { + type = map(any) + description = "key:value map for GitHub actions secrets" + default = {} +} + +variable "topics" { + type = list(string) +} + +variable "type" { + type = string + description = "Type of repository: `core`, `module`, `template`. Defaults to `core`" + default = "core" +} + +variable "visibility" { + type = string + description = "Visibility type: `public`, `internal`, `private`" + default = "public" +} + +variable "required_checks" { + type = list(string) + description = "List of required checks" + default = [] +}