-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
34 lines (29 loc) · 894 Bytes
/
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
variable "github_url" {
description = "The URL of the GitHub OAuth2 provider"
default = "https://token.actions.githubusercontent.com"
type = string
}
variable "github_organization" {
description = "The GitHub organization to allow access to"
type = string
}
variable "github_repositories" {
description = "The GitHub repositories inside the organization you want to allow access to"
default = ["*"]
type = list(string)
}
variable "role_name" {
description = "Name of the IAM role"
default = "GithubActionsRole"
type = string
}
variable "managed_policy_arns" {
description = "The ARNs of the managed policies to attach to the role"
default = []
type = list(string)
}
variable "tags" {
description = "Tags to apply to all resources"
default = {}
type = map(string)
}