Skip to content

Commit

Permalink
Copy edits
Browse files Browse the repository at this point in the history
  • Loading branch information
kellie-freeman committed Sep 16, 2024
1 parent 7dda188 commit b1901eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions blueprints/02-at-scale/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
output "kubeconfig_export" {
description = "Export the KUBECONFIG environment variable to access the Kubernetes API."
description = "Exports the KUBECONFIG environment variable to access the Kubernetes API."
value = "export KUBECONFIG=${local.kubeconfig_file_path}"
}

output "kubeconfig_add" {
description = "Add kubeconfig to the local configuration to access the Kubernetes API."
description = "Adds kubeconfig to the local configuration to access the Kubernetes API."
value = "aws eks update-kubeconfig --region ${var.aws_region} --name ${local.cluster_name}"
}

Expand Down Expand Up @@ -200,7 +200,7 @@ output "vault_init_log_file" {
}

output "vault_configure" {
description = "Configure Vault with initial secrets and creates the application role for integration with CloudBees CI (role-id and secret-id). It requires unseal keys and the root token from the vault_init output."
description = "Configures the vault with initial secrets and creates the application role for integration with CloudBees CI (role-id and secret-id). It requires unseal keys and the root token from the vault_init output."
value = "bash ${local.vault_config_file_path} ${local.vault_ns}"
}

Expand Down

0 comments on commit b1901eb

Please sign in to comment.