This commit is contained in:
2023-07-04 19:02:30 +02:00
parent 04c1aa3086
commit 7cc046ea2a
41 changed files with 1401 additions and 4 deletions

14
11-modules-target/main.tf Normal file
View File

@@ -0,0 +1,14 @@
variable "ssh_host" {}
variable "ssh_user" {}
variable "ssh_key" {}
module "install" {
source = "./modules/install_docker"
ssh_host = var.ssh_host
ssh_key = var.ssh_key
ssh_user = var.ssh_user
}
module "docker" {
source = "./modules/docker"
ssh_host = var.ssh_host
}