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: README.md
+14-1Lines changed: 14 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,19 @@ This Terraform module deploys a Kubernetes cluster on Azure using AKS (Azure Kub
6
6
7
7
-> **NOTE:** If you have not assigned `client_id` or `client_secret`, A `SystemAssigned` identity will be created.
8
8
9
+
-> **NOTE:** Since this repo contains some symbolic links, clone this repo via the following command is **HIGHLY RECOMMENDED**, or your repo might not work as expected on your machine:
Or you may need to set `core.sysmlinks` to `true` after you've cloned this repo then reset to the latest master branch:
16
+
17
+
```shell
18
+
$ git config core.symlinks true
19
+
$ git reset --hard origin/master
20
+
```
21
+
9
22
## Notice on Upgrade to V6.x
10
23
11
24
We've added a CI pipeline for this module to speed up our code review and to enforce a high code quality standard, if you want to contribute by submitting a pull request, please read [Pre-Commit & Pr-Check & Test](#Pre-Commit--Pr-Check--Test) section, or your pull request might be rejected by CI pipeline.
@@ -305,7 +318,7 @@ No modules.
305
318
| <aname="input_kubernetes_version"></a> [kubernetes\_version](#input\_kubernetes\_version)| Specify which Kubernetes release to use. The default used is the latest Kubernetes version available in the region |`string`|`null`| no |
306
319
| <aname="input_local_account_disabled"></a> [local\_account\_disabled](#input\_local\_account\_disabled)| (Optional) - If `true` local accounts will be disabled. Defaults to `false`. See [the documentation](https://docs.microsoft.com/azure/aks/managed-aad#disable-local-accounts) for more information. |`bool`|`null`| no |
307
320
| <aname="input_location"></a> [location](#input\_location)| Location of cluster, if not defined it will be read from the resource-group |`string`|`null`| no |
308
-
| <aname="input_log_analytics_solution_id"></a> [log\_analytics\_solution\_id](#input\_log\_analytics\_solution\_id)| (Optional) Existing azurerm\_log\_analytics\_solution ID. Providing ID disables creation of azurerm\_log\_analytics\_solution. |`string`|`null`| no |
321
+
| <aname="input_log_analytics_solution"></a> [log\_analytics\_solution](#input\_log\_analytics\_solution)| (Optional) Object which contains existing azurerm\_log\_analytics\_solution ID. Providing ID disables creation of azurerm\_log\_analytics\_solution. | <pre>object({<br>id = string<br> })</pre>|`null`| no |
309
322
| <aname="input_log_analytics_workspace"></a> [log\_analytics\_workspace](#input\_log\_analytics\_workspace)| (Optional) Existing azurerm\_log\_analytics\_workspace to attach azurerm\_log\_analytics\_solution. Providing the config disables creation of azurerm\_log\_analytics\_workspace. | <pre>object({<br> id = string<br> name = string<br> })</pre> |`null`| no |
310
323
| <aname="input_log_analytics_workspace_enabled"></a> [log\_analytics\_workspace\_enabled](#input\_log\_analytics\_workspace\_enabled)| Enable the integration of azurerm\_log\_analytics\_workspace and azurerm\_log\_analytics\_solution: https://docs.microsoft.com/en-us/azure/azure-monitor/containers/container-insights-onboard|`bool`|`true`| no |
311
324
| <aname="input_log_analytics_workspace_resource_group_name"></a> [log\_analytics\_workspace\_resource\_group\_name](#input\_log\_analytics\_workspace\_resource\_group\_name)| (Optional) Resource group name to create azurerm\_log\_analytics\_solution. |`string`|`null`| no |
Copy file name to clipboardExpand all lines: variables.tf
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -228,11 +228,17 @@ variable "location" {
228
228
default=null
229
229
}
230
230
231
-
variable"log_analytics_solution_id" {
232
-
type=string
233
-
description="(Optional) Existing azurerm_log_analytics_solution ID. Providing ID disables creation of azurerm_log_analytics_solution."
231
+
variable"log_analytics_solution" {
232
+
type=object({
233
+
id =string
234
+
})
235
+
description="(Optional) Object which contains existing azurerm_log_analytics_solution ID. Providing ID disables creation of azurerm_log_analytics_solution."
0 commit comments