Browse Source

move to remote sources

Chris Mague 4 years ago
parent
commit
a067e4c8cf
1 changed files with 3 additions and 3 deletions
  1. 3 3
      main.tf

+ 3 - 3
main.tf

@@ -5,7 +5,7 @@ provider "aws" {
 }
 
 module "vpc" {
-  source         = "../tfmodule-aws-2tier-vpc"
+  source         = "git::http://gogs.mague.com/chris/tfmodule-aws-2tier-vpc.git"
   region         = var.region
   profile        = var.profile
   vpc-name       = var.vpc-name
@@ -18,7 +18,7 @@ module "vpc" {
 }
 
 module "nodes" {
-  source           = "../tfmodule-aws-redis-enterprise"
+  source           = "github.com/Redislabs-Solution-Architects/tfmodule-aws-redis-enterprise"
   region           = var.region
   profile          = var.profile
   open-nets        = ["76.14.80.208/32"]
@@ -39,7 +39,7 @@ module "nodes" {
 }
 
 module "tmux" {
-  source       = "../tfmodule-cloud-tmux"
+  source       = "github.com/shokunin/tfmodule-cloud-tmux"
   session-name = "cpredis"
   ssh-key      = "${var.vpc-name}.pem"
   user         = "ubuntu"