-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
376b9f0
commit 6c07694
Showing
3 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
output "kubernetes_endpoint" { | ||
description = "The cluster endpoint" | ||
sensitive = true | ||
value = module.gke.endpoint | ||
} | ||
|
||
output "ca_certificate" { | ||
description = "The cluster ca certificate (base64 encoded)" | ||
value = module.gke.ca_certificate | ||
} | ||
|
||
output "terraform_service_account" { | ||
description = "The default service account used for running nodes (user-provided)" | ||
value = module.gke.service_account | ||
} | ||
|
||
output "cluster_identifier" { | ||
description = "Cluster name" | ||
value = module.gke.name | ||
} | ||
|
||
output "private_network_identifier" { | ||
description = "The name of the VPC being created (user-provided)" | ||
value = module.gcp-network.network_name | ||
} | ||
|
||
output "subnet_identifier" { | ||
description = "The name of the subnet being created (user-provided)" | ||
value = module.gcp-network.subnets_names | ||
} | ||
|
||
output "subnet_ranges" { | ||
description = "The secondary ranges associated with the subnet (pods, and services)" | ||
value = module.gcp-network.subnets_secondary_ranges | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# resources.tf | ||
|
||
terraform { | ||
required_providers { | ||
|