-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproviders.tf
28 lines (24 loc) · 957 Bytes
/
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
# The AWS Provider is set to retrieve configuration from the executing environment
# see https://registry.terraform.io/providers/hashicorp/aws/latest/docs#schema
provider "aws" {
region = var.management_region_aws
# see https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags
default_tags {
tags = {
"github:url" = "https://github.com/workloads/dns"
}
}
}
# The Gandi Provider is set to retrieve configuration from the executing environment
# see https://registry.terraform.io/providers/go-gandi/gandi/latest/docs#authentication
provider "gandi" {
personal_access_token = var.gandi_api_key
}
# The TFE Provider is set to retrieve configuration from `variables.tf` and the environment
# see https://registry.terraform.io/providers/hashicorp/tfe/latest/docs
provider "tfe" {
alias = "viewer"
hostname = "app.terraform.io"
ssl_skip_verify = false
token = var.tfe_team_token_viewers
}