-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (38 loc) · 1.02 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
variable "container_name" {
description = "The name of the container name"
type = string
default = "ci-cd-base"
}
variable "DEBIAN_FRONTEND" {
description = "Debian frontend setting"
type = string
default = "noninteractive"
}
variable "normal_user" {
description = "Normal user"
type = string
default = "builder"
}
variable "org" {
description = "The name of the organisation, for example, github org"
type = string
default = "cyber-scot"
}
variable "project" {
description = "The name of the project, for example, the github repo"
type = string
default = "base-images"
}
variable "registry" {
description = "The name of the registry"
type = string
default = "ghcr.io"
}
variable "registry_password" {
description = "The registry password, normally sourced via PKR_VAR"
type = string
}
variable "registry_username" {
description = "The name of the registry username, normally sourced via PKR_VAR"
type = string
}