mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
||
|
}
|