orchestration.clouds/ahoskingit/terraform/prodviders.tf

22 lines
432 B
Terraform
Raw Normal View History

provider "cloudflare" {
version = "~> 2.0"
email = var.CLOUDFLARE_EMAIL
api_key = var.CLOUDFLARE_API_KEY
account_id = var.CLOUDFLARE_ACCOUNT_ID
2017-11-28 06:04:25 +00:00
}
2017-01-31 07:51:16 +00:00
provider "aws" {
version = "~> 2.0"
2019-06-10 03:27:38 +00:00
region = "us-east-1"
access_key = var.aws_access_key
secret_key = var.aws_secret_key
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
skip_metadata_api_check = true
2019-06-10 03:27:38 +00:00
}