Skip to content

Commit

Permalink
terraform-docs: automated action
Browse files Browse the repository at this point in the history
  • Loading branch information
dutsmiller committed Apr 23, 2021
1 parent 9952d57 commit fae2d45
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ This module will create a managed Kubernetes cluster using Azure Kubernetes Serv
| location | Azure region. | `string` | n/a | yes |
| log\_analytics\_workspace\_id | ID of the Azure Log Analytics Workspace | `string` | n/a | yes |
| names | Names to be applied to resources. | `map(string)` | n/a | yes |
| network\_mode | network mode to br used with Azure CNI | `string` | `"transparent"` | no |
| network\_plugin | network plugin to use for networking (azure or kubenet) | `string` | `"kubenet"` | no |
| network\_profile\_options | docker\_bridge\_cidr, dns\_service\_ip and service\_cidr should all be empty or all should be set | <pre>object({<br> docker_bridge_cidr = string<br> dns_service_ip = string<br> service_cidr = string<br> })</pre> | n/a | yes |
| node\_pool\_defaults | node pool defaults | <pre>object({<br> vm_size = string<br> availability_zones = list(number)<br> node_count = number<br> enable_auto_scaling = bool<br> min_count = number<br> max_count = number<br> enable_host_encryption = bool<br> enable_node_public_ip = bool<br> max_pods = number<br> node_labels = map(string)<br> only_critical_addons_enabled = bool<br> orchestrator_version = string<br> os_disk_size_gb = number<br> os_disk_type = string<br> type = string<br> tags = map(string)<br> subnet = string # must be key from node_pool_subnets variable<br><br> # settings below not available in default node pools<br> mode = string<br> node_taints = list(string)<br> max_surge = string<br> eviction_policy = string<br> os_type = string<br> priority = string<br> proximity_placement_group_id = string<br> spot_max_price = number<br> })</pre> | <pre>{<br> "availability_zones": [<br> 1,<br> 2,<br> 3<br> ],<br> "enable_auto_scaling": false,<br> "enable_host_encryption": false,<br> "enable_node_public_ip": false,<br> "eviction_policy": null,<br> "max_count": null,<br> "max_pods": null,<br> "max_surge": "1",<br> "min_count": null,<br> "mode": "User",<br> "name": null,<br> "node_count": 1,<br> "node_labels": null,<br> "node_taints": null,<br> "only_critical_addons_enabled": false,<br> "orchestrator_version": null,<br> "os_disk_size_gb": null,<br> "os_disk_type": "Managed",<br> "os_type": "Linux",<br> "priority": "Regular",<br> "proximity_placement_group_id": null,<br> "spot_max_price": null,<br> "subnet": null,<br> "tags": null,<br> "type": "VirtualMachineScaleSets",<br> "vm_size": "Standard_B2s"<br>}</pre> | no |
Expand Down

0 comments on commit fae2d45

Please sign in to comment.