Skip to content

Commit

Permalink
Auto update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 11, 2023
1 parent 05e12ca commit 67ee294
Show file tree
Hide file tree
Showing 7 changed files with 120 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [Unreleased](https://github.com/Azure/terraform-azurerm-aks/tree/HEAD)

**Merged pull requests:**

- Add confidential computing in aks module [\#423](https://github.com/Azure/terraform-azurerm-aks/pull/423) ([jiaweitao001](https://github.com/jiaweitao001))

## [7.3.1](https://github.com/Azure/terraform-azurerm-aks/tree/7.3.1) (2023-08-10)

**Merged pull requests:**
Expand Down
20 changes: 20 additions & 0 deletions examples/multiple_node_pools/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 11 Aug 23 06:14 UTC

Success: true

### Versions

Terraform v1.5.2
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.8.0
+ provider registry.terraform.io/hashicorp/azurerm v3.69.0
+ provider registry.terraform.io/hashicorp/null v3.2.1
+ provider registry.terraform.io/hashicorp/random v3.3.2
+ provider registry.terraform.io/hashicorp/tls v4.0.4

### Error



---

## 09 Aug 23 06:16 UTC

Success: true
Expand Down
21 changes: 21 additions & 0 deletions examples/named_cluster/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 11 Aug 23 07:04 UTC

Success: true

### Versions

Terraform v1.5.2
on linux_amd64
+ provider registry.terraform.io/anschoewe/curl v1.0.2
+ provider registry.terraform.io/azure/azapi v1.8.0
+ provider registry.terraform.io/hashicorp/azurerm v3.69.0
+ provider registry.terraform.io/hashicorp/null v3.2.1
+ provider registry.terraform.io/hashicorp/random v3.3.2
+ provider registry.terraform.io/hashicorp/tls v4.0.4

### Error



---

## 09 Aug 23 06:49 UTC

Success: true
Expand Down
21 changes: 21 additions & 0 deletions examples/startup/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 11 Aug 23 06:37 UTC

Success: true

### Versions

Terraform v1.5.2
on linux_amd64
+ provider registry.terraform.io/anschoewe/curl v1.0.2
+ provider registry.terraform.io/azure/azapi v1.8.0
+ provider registry.terraform.io/hashicorp/azurerm v3.69.0
+ provider registry.terraform.io/hashicorp/null v3.2.1
+ provider registry.terraform.io/hashicorp/random v3.3.2
+ provider registry.terraform.io/hashicorp/tls v4.0.4

### Error



---

## 09 Aug 23 06:20 UTC

Success: false
Expand Down
20 changes: 20 additions & 0 deletions examples/with_acr/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 11 Aug 23 06:12 UTC

Success: true

### Versions

Terraform v1.5.2
on linux_amd64
+ provider registry.terraform.io/azure/azapi v1.8.0
+ provider registry.terraform.io/hashicorp/azurerm v3.69.0
+ provider registry.terraform.io/hashicorp/null v3.2.1
+ provider registry.terraform.io/hashicorp/random v3.3.2
+ provider registry.terraform.io/hashicorp/tls v4.0.4

### Error



---

## 09 Aug 23 06:04 UTC

Success: false
Expand Down
21 changes: 21 additions & 0 deletions examples/without_monitor/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 11 Aug 23 07:01 UTC

Success: true

### Versions

Terraform v1.5.2
on linux_amd64
+ provider registry.terraform.io/anschoewe/curl v1.0.2
+ provider registry.terraform.io/azure/azapi v1.8.0
+ provider registry.terraform.io/hashicorp/azurerm v3.69.0
+ provider registry.terraform.io/hashicorp/null v3.2.1
+ provider registry.terraform.io/hashicorp/random v3.3.2
+ provider registry.terraform.io/hashicorp/tls v4.0.4

### Error



---

## 09 Aug 23 07:05 UTC

Success: true
Expand Down
22 changes: 11 additions & 11 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,12 @@ resource "azurerm_kubernetes_cluster" "main" {
avm_git_last_modified_at = "2023-06-05 02:21:33"
avm_git_org = "Azure"
avm_git_repo = "terraform-azurerm-aks"
avm_yor_trace = "c9616397-da59-4c03-8092-a6231fe939e0"
avm_yor_trace = "f57d8afc-c056-4a38-b8bc-5ac303fb5737"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/), (/*<box>*/ (var.tracing_tags_enabled ? { for k, v in /*</box>*/ {
avm_yor_name = "main"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/))
workload_identity_enabled = var.workload_identity_enabled

dynamic "confidential_computing" {
for_each = var.confidential_computing == null ? [] : [var.confidential_computing]

content {
sgx_quote_helper_enabled = confidential_computing.value.sgx_quote_helper_enabled
}
}
dynamic "default_node_pool" {
for_each = var.enable_auto_scaling == true ? [] : ["default_node_pool_manually_scaled"]

Expand Down Expand Up @@ -311,6 +304,13 @@ resource "azurerm_kubernetes_cluster" "main" {
tenant_id = var.rbac_aad_tenant_id
}
}
dynamic "confidential_computing" {
for_each = var.confidential_computing == null ? [] : [var.confidential_computing]

content {
sgx_quote_helper_enabled = confidential_computing.value.sgx_quote_helper_enabled
}
}
dynamic "identity" {
for_each = var.client_id == "" || var.client_secret == "" ? ["identity"] : []

Expand Down Expand Up @@ -567,7 +567,7 @@ resource "azurerm_kubernetes_cluster_node_pool" "node_pool" {
avm_git_last_modified_at = "2023-05-04 05:02:32"
avm_git_org = "Azure"
avm_git_repo = "terraform-azurerm-aks"
avm_yor_trace = "f9d057fe-f4be-4aa4-a2dc-49139d9d6f29"
avm_yor_trace = "7634d95e-39c1-4a9a-b2e3-1fc7d6602313"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/), (/*<box>*/ (var.tracing_tags_enabled ? { for k, v in /*</box>*/ {
avm_yor_name = "node_pool"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/))
Expand Down Expand Up @@ -711,7 +711,7 @@ resource "azurerm_log_analytics_workspace" "main" {
avm_git_last_modified_at = "2023-06-05 02:21:33"
avm_git_org = "Azure"
avm_git_repo = "terraform-azurerm-aks"
avm_yor_trace = "b9e0f94b-7145-4722-8fc2-2e6d3eaec770"
avm_yor_trace = "9bb3ab45-1155-4bea-bc68-6b7d9aa73fbc"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/), (/*<box>*/ (var.tracing_tags_enabled ? { for k, v in /*</box>*/ {
avm_yor_name = "main"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/))
Expand Down Expand Up @@ -752,7 +752,7 @@ resource "azurerm_log_analytics_solution" "main" {
avm_git_last_modified_at = "2023-07-20 06:04:07"
avm_git_org = "Azure"
avm_git_repo = "terraform-azurerm-aks"
avm_yor_trace = "656c7a0c-b1f6-48d8-9652-54cbf07010f5"
avm_yor_trace = "72af332c-2eac-4d8e-b895-bf85e31f0e23"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/), (/*<box>*/ (var.tracing_tags_enabled ? { for k, v in /*</box>*/ {
avm_yor_name = "main"
} /*<box>*/ : replace(k, "avm_", var.tracing_tags_prefix) => v } : {}) /*</box>*/))
Expand Down

0 comments on commit 67ee294

Please sign in to comment.