Add terraform files and config for GCP
Signed-off-by: Somtochi Onyekwere <somtochionyekwere@gmail.com>
This commit is contained in:
committed by
Sunny
parent
f6b0c6e7ef
commit
7c1b897919
28
tests/integration/terraform/gcp/outputs.tf
Normal file
28
tests/integration/terraform/gcp/outputs.tf
Normal file
@@ -0,0 +1,28 @@
|
||||
output "kubeconfig" {
|
||||
value = module.gke.kubeconfig
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "gcp_project" {
|
||||
value = var.gcp_project_id
|
||||
}
|
||||
|
||||
output "gcp_region" {
|
||||
value = var.gcp_region
|
||||
}
|
||||
|
||||
output "artifact_registry_id" {
|
||||
value = module.gcr.artifact_repository_id
|
||||
}
|
||||
|
||||
output "sops_id" {
|
||||
value = data.google_kms_crypto_key.my_crypto_key.id
|
||||
}
|
||||
|
||||
output "fleet_infra_url" {
|
||||
value = "ssh://${var.gcp_email}@source.developers.google.com:2022/p/${var.gcp_project_id}/r/${google_sourcerepo_repository.fleet-infra.name}"
|
||||
}
|
||||
|
||||
output "application_url" {
|
||||
value = "ssh://${var.gcp_email}@source.developers.google.com:2022/p/${var.gcp_project_id}/r/${google_sourcerepo_repository.application.name}"
|
||||
}
|
||||
Reference in New Issue
Block a user