Last active
October 3, 2017 17:19
-
-
Save denniswebb/d07c0c9ef1ec4f69b5d677d86a1c40d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "github_token" {} | |
provider "github" { | |
organization = "denniswebb" | |
token = "${var.github_token}" | |
} | |
module "datadog-openvpn" { | |
source = "modules/github" | |
repository_name = "datadog-openvpn" | |
} | |
module "os2cw" { | |
source = "modules/github" | |
repository_name = "os2cw" | |
} | |
module "wait4mysql" { | |
source = "modules/github" | |
repository_name = "wait4mysql" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment