-
Notifications
You must be signed in to change notification settings - Fork 3
/
providers.tf
48 lines (42 loc) · 1.07 KB
/
providers.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
terraform {
required_providers {
# https://registry.terraform.io/providers/hashicorp/aws/latest
aws = {
source = "hashicorp/aws"
# >= 4.41.0 <5.0.0
version = "~> 4.41"
}
# https://registry.terraform.io/providers/hashicorp/local/latest
local = {
source = "hashicorp/local"
# >= 2.2.0 <3.0.0
version = "~> 2.2"
}
# https://registry.terraform.io/providers/hashicorp/tls/latest
tls = {
source = "hashicorp/tls"
# >= 4.0.0 <5.0.0
version = "~> 4.0"
}
# https://registry.terraform.io/providers/hashicorp/null/latest
null = {
source = "hashicorp/null"
# >= 3.1.0 <4.0.0
version = "~> 3.1"
}
# https://registry.terraform.io/providers/integrations/github/latest
github = {
source = "integrations/github"
# >= 5.2.0 <6.0.0
version = "~> 5.2"
}
}
}
provider "aws" {
region = var.aws_region
}
# https://registry.terraform.io/providers/integrations/github/latest/docs
provider "github" {
owner = var.github_owner
token = var.github_token
}