Skip to content

Instantly share code, notes, and snippets.

@zimbatm
Created December 1, 2020 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zimbatm/9c44f0979d27daefa9a74f70cc01aed1 to your computer and use it in GitHub Desktop.
Save zimbatm/9c44f0979d27daefa9a74f70cc01aed1 to your computer and use it in GitHub Desktop.
terraform {
required_providers {
aws = { source = "hashicorp/aws" }
external = { source = "hashicorp/external" }
github = { source = "nixpkgs/github" }
google = { source = "nixpkgs/google" }
hcloud = { source = "nixpkgs/hcloud" }
linuxbox = { source = "numtide/linuxbox" }
null = { source = "hashicorp/null" }
random = { source = "hashicorp/random" }
secret = { source = "nixpkgs/secret" }
template = { source = "hashicorp/template" }
tls = { source = "hashicorp/tls" }
}
}
provider "aws" {
region = "eu-west-1"
}
provider "github" {
organization = "numtide"
}
provider "google" {
project = "numtide-infra"
}
provider "hcloud" {
token = secret_resource.hcloud_token.value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment