forked from terraform-redhat/terraform-provider-rhcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
30 lines (27 loc) · 688 Bytes
/
variables.tf
File metadata and controls
30 lines (27 loc) · 688 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
# OCM Variables
variable "token" {
type = string
description = "OCM token - You can get it here: https://console.redhat.com/openshift/token"
}
variable "cluster_id" {
type = string
description = "The OCP cluster ID"
}
variable "url" {
type = string
description = "Provide OCM environment by setting a value to url"
default = "https://api.openshift.com"
}
# IDP Variables
variable "github_client_id" {
type = string
description = "GitHub client id"
}
variable "github_client_secret" {
type = string
description = "GitHub client secret"
}
variable "github_org" {
type = string
description = "GitHub organization"
}