You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/resources/ekscluster/resource_ekscluster.go
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,17 @@ var clusterSchema = map[string]*schema.Schema{
86
86
returntrue
87
87
},
88
88
},
89
+
waitForKubeconfig: {
90
+
Type: schema.TypeBool,
91
+
Description: "Wait until pinniped extension is ready to provide kubeconfig",
92
+
Default: false,
93
+
Optional: true,
94
+
},
95
+
kubeconfigKey: {
96
+
Type: schema.TypeString,
97
+
Description: "Kubeconfig for connecting to newly created cluster base64 encoded. This will only be returned if you have elected to wait for kubeconfig.",
0 commit comments