mirror of https://github.com/fluxcd/flux2.git
14 lines
271 B
Terraform
14 lines
271 B
Terraform
2 years ago
|
module "gke" {
|
||
|
source = "git::https://github.com/fluxcd/test-infra.git//tf-modules/gcp/gke"
|
||
|
|
||
|
name = local.name
|
||
|
tags = var.tags
|
||
|
}
|
||
|
|
||
|
module "gcr" {
|
||
|
source = "git::https://github.com/fluxcd/test-infra.git//tf-modules/gcp/gcr"
|
||
|
|
||
|
name = local.name
|
||
|
tags = var.tags
|
||
|
}
|