Skip to content

Commit

Permalink
Complete variables population
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonBirchall authored Jan 12, 2024
1 parent 13c70b1 commit 709aff7
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
}

0 comments on commit 709aff7

Please sign in to comment.