Skip to content

Commit

Permalink
feat: importing ec2 module
Browse files Browse the repository at this point in the history
  • Loading branch information
Grodriggues committed Mar 17, 2023
1 parent 031f6fc commit 1461e88
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ provider "aws" {
region = local.region
}

module "ec2_machine" {
source = "./modules/ec2"
}


module "jenkins_server" {
depends_on = [
module.ec2_machine
]
source = "./modules/ecs"
}

0 comments on commit 1461e88

Please sign in to comment.