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.
8 lines
211 B
Terraform
8 lines
211 B
Terraform
2 years ago
|
resource "google_sourcerepo_repository" "fleet-infra" {
|
||
|
name = "fleet-infra-${random_pet.suffix.id}"
|
||
|
}
|
||
|
|
||
|
resource "google_sourcerepo_repository" "application" {
|
||
|
name = "application-${random_pet.suffix.id}"
|
||
|
}
|