File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ variable "github_app_enabled" {
25
25
}
26
26
27
27
variable "github_app_id" {
28
- type = string
28
+ type = number
29
29
description = " The ID of the GitHub App to use for authentication"
30
30
default = null
31
31
}
32
32
33
33
variable "github_app_installation_id" {
34
- type = string
34
+ type = number
35
35
description = " The Installation ID of the GitHub App to use for authentication"
36
36
default = null
37
37
}
Original file line number Diff line number Diff line change @@ -91,8 +91,8 @@ server:
91
91
name: argocd-repo-creds-${ name}
92
92
key: sshPrivateKey
93
93
%{ else ~}
94
- githubAppID: " ${ github_app_id} "
95
- githubAppInstallationID: " ${ github_app_installation_id} "
94
+ githubAppID: ${ github_app_id}
95
+ githubAppInstallationID: ${ github_app_installation_id}
96
96
githubAppPrivateKeySecret:
97
97
name: argocd-repo-creds-${ name}
98
98
key: githubAppPrivateKey
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ variable "github_notifications_app_enabled" {
12
12
}
13
13
14
14
variable "github_notifications_app_id" {
15
- type = string
15
+ type = number
16
16
description = " The ID of the GitHub App to use for notifications authentication"
17
17
default = null
18
18
}
19
19
20
20
variable "github_notifications_app_installation_id" {
21
- type = string
21
+ type = number
22
22
description = " The Installation ID of the GitHub App to use for notifications authentication"
23
23
default = null
24
24
}
You can’t perform that action at this time.
0 commit comments