File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
kubernetes/test-infra/typhoon-aws Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ locals {
2+ kubeconfig_path = " ${ path . root } /kubeconfig"
3+ }
4+
15resource "tls_private_key" "typhoon-acc" {
26 algorithm = " RSA"
37}
@@ -26,3 +30,7 @@ resource "null_resource" "ssh-key" {
2630data "aws_route53_zone" "typhoon-acc" {
2731 name = var. base_domain
2832}
33+
34+ output "kubeconfig_path" {
35+ value = local. kubeconfig_path
36+ }
Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ module "typhoon-acc-1_18" {
2828resource "local_file" "typhoon-acc_1_18" {
2929 count = local. enabled_1_18
3030 content = module. typhoon-acc-1_18 [0 ]. kubeconfig-admin
31- filename = " kubeconfig "
31+ filename = local . kubeconfig_path
3232}
Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ module "typhoon-acc-1_19" {
2828resource "local_file" "typhoon-acc-1_19" {
2929 count = local. enabled_1_19
3030 content = module. typhoon-acc-1_19 [0 ]. kubeconfig-admin
31- filename = " kubeconfig "
31+ filename = local . kubeconfig_path
3232}
You can’t perform that action at this time.
0 commit comments