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.
		
		
		
		
		
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			777 B
		
	
	
	
		
			HCL
		
	
			
		
		
	
	
			33 lines
		
	
	
		
			777 B
		
	
	
	
		
			HCL
		
	
output "gke_kubeconfig" {
 | 
						|
  value     = module.gke.kubeconfig
 | 
						|
  sensitive = true
 | 
						|
}
 | 
						|
 | 
						|
output "gcp_project_id" {
 | 
						|
  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_repository" {
 | 
						|
  value = "ssh://${var.gcp_email}@source.developers.google.com:2022/p/${var.gcp_project_id}/r/${google_sourcerepo_repository.fleet-infra.name}"
 | 
						|
}
 | 
						|
 | 
						|
output "application_repository" {
 | 
						|
  value = "ssh://${var.gcp_email}@source.developers.google.com:2022/p/${var.gcp_project_id}/r/${google_sourcerepo_repository.application.name}"
 | 
						|
}
 | 
						|
 | 
						|
output "pubsub_topic" {
 | 
						|
  value = google_pubsub_topic.pubsub.name
 | 
						|
}
 |