|
21 | 21 | 1. Update the `terraform.tfvars` file to not be prompted for variable input |
22 | 22 | - Add `cluster_name` |
23 | 23 | - Add the IDs of the members or groups who should have cluster access to the variable `admin_group_object_ids`. The GUID input can be retrieved in the Azure portal by searching for the desired user or group |
24 | | - - Add `fluentbit-workspace-name`. This will create Azure Log Analytics Workspace with the specified name. |
25 | | - - Add `prometheus-name`. This will create Azure Monitor Workspace with the specified name. |
| 24 | + - Add `fluentbit_workspace_name`. This will create Azure Log Analytics Workspace with the specified name. |
| 25 | + - Add `prometheus_name`. This will create Azure Monitor Workspace with the specified name. |
26 | 26 |
|
27 | 27 | 2. Run `terraform plan` and validate that the output is correct |
28 | 28 |
|
@@ -76,14 +76,14 @@ If it is needed to get the value of `log_analytics_workspace_primary_shared_key` |
76 | 76 | | Name | Description | Type | Default | Required | |
77 | 77 | |------|-------------|------|---------|:--------:| |
78 | 78 | | <a name="input_admin_group_object_ids"></a> [admin\_group\_object\_ids](#input\_admin\_group\_object\_ids) | (Required) A list of Object IDs (GUIDs) of Azure Active Directory Groups which should have Owner Role on the Cluster. <br> This is not the email address of the group, the GUID can be found in the Azure panel by searching for the AD Group<br> NOTE: You will need Azure "Owner" role (not "Contributor") to attach an AD role to the Kubernetes cluster. | `list(any)` | n/a | yes | |
79 | | -| <a name="input_az_monitor-user-managed-id"></a> [az\_monitor-user-managed-id](#input\_az\_monitor-user-managed-id) | The user managed identity to *create* for use with the Azure monitor-- at this time this does not accept existing user or system managed identity | `string` | `"tf-holoscan-identity"` | no | |
| 79 | +| <a name="input_az_monitor_user_managed_id"></a> [az\_monitor-user-managed-id](#input\_az\_monitor-user-managed-id) | The user managed identity to *create* for use with the Azure monitor-- at this time this does not accept existing user or system managed identity | `string` | `"tf-holoscan-identity"` | no | |
80 | 80 | | <a name="input_azure_log_analytics_retention_in_days"></a> [azure\_log\_analytics\_retention\_in\_days](#input\_azure\_log\_analytics\_retention\_in\_days) | The workspace data retention in days. Possible values are either 7 (Free Tier only) or range between 30 and 730 | `number` | `30` | no | |
81 | 81 | | <a name="input_azure_log_analytics_sku"></a> [azure\_log\_analytics\_sku](#input\_azure\_log\_analytics\_sku) | Specifies the SKU of the Log Analytics Workspace. Possible values are Free, PerNode, Premium, Standard, Standalone, Unlimited, CapacityReservation, and PerGB2018. Defaults to PerGB2018 | `string` | `"PerGB2018"` | no | |
82 | 82 | | <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | Name of the cluster | `string` | n/a | yes | |
83 | | -| <a name="input_fluentbit-workspace-name"></a> [fluentbit-workspace-name](#input\_fluentbit-workspace-name) | Name of the Azure Log Workspace for Fluentbit to be created | `string` | n/a | yes | |
| 83 | +| <a name="input_fluentbit_workspace_name"></a> [fluentbit_workspace_name](#input\_fluentbit_workspace_name) | Name of the Azure Log Workspace for Fluentbit to be created | `string` | n/a | yes | |
84 | 84 | | <a name="input_fluentbit_enabled"></a> [fluentbit\_enabled](#input\_fluentbit\_enabled) | Set to true to enable, false to disable | `bool` | `true` | no | |
85 | 85 | | <a name="input_location"></a> [location](#input\_location) | The region to create resources in. This can be filed out in the terraform.tfvars file in this directory | `any` | n/a | yes | |
86 | | -| <a name="input_prometheus-name"></a> [prometheus-name](#input\_prometheus-name) | The name of the Azure Monitor Workspace for Prometheus | `string` | n/a | yes | |
| 86 | +| <a name="input_prometheus_name"></a> [prometheus_name](#input\_prometheus_name) | The name of the Azure Monitor Workspace for Prometheus | `string` | n/a | yes | |
87 | 87 | | <a name="input_prometheus_resource_group_name"></a> [prometheus\_resource\_group\_name](#input\_prometheus\_resource\_group\_name) | Name of the Prometheus resource group | `string` | `"prometheus-rg"` | no | |
88 | 88 |
|
89 | 89 | ## Outputs |
|
0 commit comments