-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
31 lines (26 loc) · 762 Bytes
/
variables.tf
File metadata and controls
31 lines (26 loc) · 762 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
variable "display_name" {
description = "Name for the federated identity credential."
type = string
default = "github-actions-oidc"
}
variable "github_org" {
description = "GitHub repo organization."
type = string
}
variable "github_repo" {
description = "GitHub repository name."
type = string
}
variable "description" {
description = "Optional description for the federated credential."
type = string
default = null
}
variable "role_scope" {
description = "The ARM scope at which to assign the role (e.g. a resource group or subscription ID)."
type = string
}
variable "role_name" {
description = "Built-in role definition name to assign (e.g. 'Contributor')."
type = string
}