google-cloud: Move controller and worker submodules under kubernetes
This commit is contained in:
parent
f7dd959e9c
commit
795428329a
|
@ -1,5 +1,5 @@
|
||||||
module "controllers" {
|
module "controllers" {
|
||||||
source = "../controllers"
|
source = "controllers"
|
||||||
cluster_name = "${var.cluster_name}"
|
cluster_name = "${var.cluster_name}"
|
||||||
ssh_authorized_key = "${var.ssh_authorized_key}"
|
ssh_authorized_key = "${var.ssh_authorized_key}"
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ module "controllers" {
|
||||||
}
|
}
|
||||||
|
|
||||||
module "workers" {
|
module "workers" {
|
||||||
source = "../workers"
|
source = "workers"
|
||||||
cluster_name = "${var.cluster_name}"
|
cluster_name = "${var.cluster_name}"
|
||||||
ssh_authorized_key = "${var.ssh_authorized_key}"
|
ssh_authorized_key = "${var.ssh_authorized_key}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue