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
|[azuread_client_config.current](https://registry.terraform.io/providers/hashicorp/azuread/latest/docs/data-sources/client_config)| data source |
495
497
|[azurerm_kubernetes_cluster.aks](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/kubernetes_cluster)| data source |
@@ -531,6 +533,7 @@ Usage examples are located in [terraform provider repo](https://github.com/casta
531
533
| <aname="input_install_pod_mutator"></a> [install\_pod\_mutator](#input\_install\_pod\_mutator)| Optional flag for installation of pod mutator |`bool`|`false`| no |
532
534
| <aname="input_install_security_agent"></a> [install\_security\_agent](#input\_install\_security\_agent)| Optional flag for installation of security agent (Kvisor - https://docs.cast.ai/docs/kvisor)|`bool`|`false`| no |
533
535
| <aname="input_install_workload_autoscaler"></a> [install\_workload\_autoscaler](#input\_install\_workload\_autoscaler)| Optional flag for installation of workload autoscaler (https://docs.cast.ai/docs/workload-autoscaling-configuration)|`bool`|`false`| no |
536
+
| <aname="input_install_workload_autoscaler_exporter"></a> [install\_workload\_autoscaler\_exporter](#input\_install\_workload\_autoscaler\_exporter)| Optional flag for installation of workload autoscaler exporter (custom metrics exporter) |`bool`|`false`| no |
534
537
| <aname="input_kvisor_controller_extra_args"></a> [kvisor\_controller\_extra\_args](#input\_kvisor\_controller\_extra\_args)| ⚠️ DEPRECATED: use kvisor\_values instead (see example: https://github.com/castai/terraform-provider-castai/tree/master/examples/aks/aks_cluster_with_security/castai.tf ). Extra arguments for the kvisor controller. Optionally enable kvisor to lint Kubernetes YAML manifests, scan workload images and check if workloads pass CIS Kubernetes Benchmarks as well as NSA, WASP and PCI recommendations. |`map(string)`| <pre>{<br/> "image-scan-enabled": "true",<br/> "kube-bench-enabled": "true",<br/> "kube-linter-enabled": "true"<br/>}</pre> | no |
535
538
| <aname="input_kvisor_grpc_addr"></a> [kvisor\_grpc\_addr](#input\_kvisor\_grpc\_addr)| CAST AI Kvisor optimized GRPC API address |`string`|`"kvisor.prod-master.cast.ai:443"`| no |
536
539
| <aname="input_kvisor_values"></a> [kvisor\_values](#input\_kvisor\_values)| List of YAML formatted string values for kvisor helm chart, see example: https://github.com/castai/terraform-provider-castai/tree/master/examples/aks/aks_cluster_with_security/castai.tf|`list(string)`|`[]`| no |
@@ -554,6 +557,8 @@ Usage examples are located in [terraform provider repo](https://github.com/casta
554
557
| <aname="input_wait_for_cluster_ready"></a> [wait\_for\_cluster\_ready](#input\_wait\_for\_cluster\_ready)| Wait for cluster to be ready before finishing the module execution, this option requires `castai_api_token` to be set |`bool`|`false`| no |
555
558
| <aname="input_workload_autoscaler_values"></a> [workload\_autoscaler\_values](#input\_workload\_autoscaler\_values)| List of YAML formatted string with cluster-workload-autoscaler values |`list(string)`|`[]`| no |
556
559
| <aname="input_workload_autoscaler_version"></a> [workload\_autoscaler\_version](#input\_workload\_autoscaler\_version)| Version of castai-workload-autoscaler helm chart. Default latest |`string`|`null`| no |
560
+
| <aname="input_workload_autoscaler_exporter_values"></a> [workload\_autoscaler\_exporter\_values](#input\_workload\_autoscaler\_exporter\_values)| List of YAML formatted string with castai-workload-autoscaler-exporter values |`list(string)`|`[]`| no |
561
+
| <aname="input_workload_autoscaler_exporter_version"></a> [workload\_autoscaler\_exporter\_version](#input\_workload\_autoscaler\_exporter\_version)| Version of castai-workload-autoscaler-exporter helm chart. Default latest |`string`|`null`| no |
557
562
| <aname="input_workload_scaling_policies"></a> [workload\_scaling\_policies](#input\_workload\_scaling\_policies)| Map of workload scaling policies to create |`any`|`{}`| no |
description="Optional flag for installation of workload autoscaler exporter (custom metrics exporter)"
270
+
}
271
+
272
+
variable"workload_autoscaler_exporter_version" {
273
+
description="Version of castai-workload-autoscaler-exporter helm chart. Default latest"
274
+
type=string
275
+
default=null
276
+
}
277
+
278
+
variable"workload_autoscaler_exporter_values" {
279
+
description="List of YAML formatted string with castai-workload-autoscaler-exporter values"
280
+
type=list(string)
281
+
default=[]
282
+
}
283
+
266
284
variable"azuread_owners" {
267
285
description="A set of object IDs of principals that will be granted ownership of the Azure AD service principal and application. Defaults to current user."
0 commit comments