-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathvariables.tf
More file actions
37 lines (32 loc) · 774 Bytes
/
variables.tf
File metadata and controls
37 lines (32 loc) · 774 Bytes
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
variable "gpg_key_id" {
description = "The ID of the GPG key to use for signing commits when bootstraping FluxCD."
type = string
default = ""
}
variable "gpg_key_ring" {
description = "The path to the exported GPG key ring."
type = string
default = ""
}
variable "gpg_passphrase" {
description = "The passphrase of the GPG key."
sensitive = true
type = string
default = ""
}
variable "github_token" {
description = "GitHub token"
sensitive = true
type = string
default = ""
}
variable "github_org" {
description = "GitHub organization"
type = string
default = ""
}
variable "github_repository" {
description = "GitHub repository"
type = string
default = ""
}