diff --git a/avm/ptn/azd/aks-automatic-cluster/README.md b/avm/ptn/azd/aks-automatic-cluster/README.md index 6ffb1356f7..53693fddd5 100644 --- a/avm/ptn/azd/aks-automatic-cluster/README.md +++ b/avm/ptn/azd/aks-automatic-cluster/README.md @@ -126,7 +126,7 @@ param location = '' | Parameter | Type | Description | | :-- | :-- | :-- | -| [`aadProfile`](#parameter-aadprofile) | object | Enable Azure Active Directory integration. | +| [`aadProfile`](#parameter-aadprofile) | object | Settigs for the Azure Active Directory integration. | | [`enableTelemetry`](#parameter-enabletelemetry) | bool | Enable/Disable usage telemetry for module. | | [`location`](#parameter-location) | string | The Azure region/location for the AKS resources. | @@ -136,13 +136,15 @@ The name for the AKS managed cluster. - Required: Yes - Type: string +- Nullable: No ### Parameter: `aadProfile` -Enable Azure Active Directory integration. +Settigs for the Azure Active Directory integration. - Required: No - Type: object +- Nullable: Yes **Required parameters** @@ -167,6 +169,7 @@ Specifies whether to enable Azure RBAC for Kubernetes authorization. - Required: Yes - Type: bool +- Nullable: No ### Parameter: `aadProfile.aadProfileManaged` @@ -174,6 +177,7 @@ Specifies whether to enable managed AAD integration. - Required: Yes - Type: bool +- Nullable: No ### Parameter: `aadProfile.aadProfileAdminGroupObjectIDs` @@ -181,6 +185,7 @@ Specifies the AAD group object IDs that will have admin role of the cluster. - Required: No - Type: array +- Nullable: Yes ### Parameter: `aadProfile.aadProfileClientAppID` @@ -188,6 +193,7 @@ The client AAD application ID. - Required: No - Type: string +- Nullable: Yes ### Parameter: `aadProfile.aadProfileServerAppID` @@ -195,6 +201,7 @@ The server AAD application ID. - Required: No - Type: string +- Nullable: Yes ### Parameter: `aadProfile.aadProfileServerAppSecret` @@ -202,6 +209,7 @@ The server AAD application secret. - Required: No - Type: string +- Nullable: Yes ### Parameter: `aadProfile.aadProfileTenantId` @@ -209,6 +217,7 @@ Specifies the tenant ID of the Azure Active Directory used by the AKS cluster fo - Required: No - Type: string +- Nullable: Yes ### Parameter: `enableTelemetry` @@ -216,6 +225,7 @@ Enable/Disable usage telemetry for module. - Required: No - Type: bool +- Nullable: No - Default: `True` ### Parameter: `location` @@ -224,6 +234,7 @@ The Azure region/location for the AKS resources. - Required: No - Type: string +- Nullable: No - Default: `[resourceGroup().location]` ## Outputs diff --git a/avm/ptn/azd/aks-automatic-cluster/main.bicep b/avm/ptn/azd/aks-automatic-cluster/main.bicep index 64361ce7f9..dda8bb9acd 100644 --- a/avm/ptn/azd/aks-automatic-cluster/main.bicep +++ b/avm/ptn/azd/aks-automatic-cluster/main.bicep @@ -14,7 +14,7 @@ param location string = resourceGroup().location param enableTelemetry bool = true import { aadProfileType } from 'br/public:avm/res/container-service/managed-cluster:0.5.3' -@description('Optional. Enable Azure Active Directory integration.') +@description('Optional. Settigs for the Azure Active Directory integration.') param aadProfile aadProfileType? // ============== // diff --git a/avm/ptn/azd/aks-automatic-cluster/main.json b/avm/ptn/azd/aks-automatic-cluster/main.json index 2a1ad39aa8..3329ef516e 100644 --- a/avm/ptn/azd/aks-automatic-cluster/main.json +++ b/avm/ptn/azd/aks-automatic-cluster/main.json @@ -6,7 +6,7 @@ "_generator": { "name": "bicep", "version": "0.32.4.45862", - "templateHash": "8684475244832615377" + "templateHash": "1131028867773380264" }, "name": "Azd AKS Automatic Cluster", "description": "Creates an Azure Kubernetes Service (AKS) cluster with a system agent pool.\n\n**Note:** This module is not intended for broad, generic use, as it was designed to cater for the requirements of the AZD CLI product. Feature requests and bug fix requests are welcome if they support the development of the AZD CLI but may not be incorporated if they aim to make this module more generic than what it needs to be for its primary use case", @@ -100,7 +100,7 @@ "$ref": "#/definitions/aadProfileType", "nullable": true, "metadata": { - "description": "Optional. Enable Azure Active Directory integration." + "description": "Optional. Settigs for the Azure Active Directory integration." } } },