Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Kusto Cluster - Fixed identity output #3220

Merged
merged 3 commits into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion avm/res/kusto/cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,6 @@ The resource ID of the subnet to which to deploy the Kusto Cluster.

| Output | Type | Description |
| :-- | :-- | :-- |
| `identity` | object | The identity of the cluster. |
| `location` | string | The location the resource was deployed into. |
| `name` | string | The name of the kusto cluster. |
| `privateEndpoints` | array | The private endpoints of the kusto cluster. |
Expand Down
3 changes: 0 additions & 3 deletions avm/res/kusto/cluster/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,6 @@ output name string = kustoCluster.name
@description('The location the resource was deployed into.')
output location string = kustoCluster.location

@description('The identity of the cluster.')
output identity object = kustoCluster.identity

@description('The private endpoints of the kusto cluster.')
output privateEndpoints array = [
for (pe, i) in (!empty(privateEndpoints) ? array(privateEndpoints) : []): {
Expand Down
9 changes: 1 addition & 8 deletions avm/res/kusto/cluster/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "9987903523872780142"
"templateHash": "17272299626990757362"
},
"name": "Kusto Cluster",
"description": "This module deploys a Kusto Cluster.",
Expand Down Expand Up @@ -1977,13 +1977,6 @@
},
"value": "[reference('kustoCluster', '2023-08-15', 'full').location]"
},
"identity": {
"type": "object",
"metadata": {
"description": "The identity of the cluster."
},
"value": "[reference('kustoCluster', '2023-08-15', 'full').identity]"
},
"privateEndpoints": {
"type": "array",
"metadata": {
Expand Down
Loading