Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit

Permalink
Auto update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 5, 2024
1 parent 6fae620 commit 4ac958c
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- chore: remove ephemeral number because of deprecation and use new module telemetry solution [\#89](https://github.com/Azure/terraform-azurerm-openai/pull/89) ([lonegunmanb](https://github.com/lonegunmanb))
- Bump github.com/Azure/terraform-module-test-helper from 0.24.0 to 0.25.0 in /test [\#88](https://github.com/Azure/terraform-azurerm-openai/pull/88) ([dependabot[bot]](https://github.com/apps/dependabot))
- Add to output identity block values [\#85](https://github.com/Azure/terraform-azurerm-openai/pull/85) ([zioproto](https://github.com/zioproto))
- Bump github.com/gruntwork-io/terratest from 0.46.15 to 0.46.16 in /test [\#82](https://github.com/Azure/terraform-azurerm-openai/pull/82) ([dependabot[bot]](https://github.com/apps/dependabot))
- feat\(private\_endpoint.tf\) allow custom location on private-endpoint [\#81](https://github.com/Azure/terraform-azurerm-openai/pull/81) ([matthiasritter](https://github.com/matthiasritter))
- Bump github.com/Azure/terraform-module-test-helper from 0.23.0 to 0.24.0 in /test [\#80](https://github.com/Azure/terraform-azurerm-openai/pull/80) ([dependabot[bot]](https://github.com/apps/dependabot))
Expand Down
18 changes: 18 additions & 0 deletions examples/azureopenai-private-endpoints/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 22 Jul 24 13:15 UTC

Success: true

### Versions

Terraform v1.9.2
on linux_amd64
+ provider registry.terraform.io/azure/modtm v0.3.2
+ provider registry.terraform.io/hashicorp/azurerm v3.113.0
+ provider registry.terraform.io/hashicorp/random v3.6.2

### Error



---

## 31 Jul 24 09:22 UTC

Success: true
Expand Down
18 changes: 18 additions & 0 deletions examples/azureopenai-public-endpoint/TestRecord.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 22 Jul 24 13:11 UTC

Success: true

### Versions

Terraform v1.9.2
on linux_amd64
+ provider registry.terraform.io/azure/modtm v0.3.2
+ provider registry.terraform.io/hashicorp/azurerm v3.113.0
+ provider registry.terraform.io/hashicorp/random v3.6.2

### Error



---

## 31 Jul 24 09:19 UTC

Success: true
Expand Down
11 changes: 5 additions & 6 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
output "cognitive_account_identity" {
description = "The identity block exports the Principal ID and the Tenant ID associated with this Managed Service Identity."
value = try(azurerm_cognitive_account.this.identity[0], null)
}

output "openai_endpoint" {
description = "The endpoint used to connect to the Cognitive Service Account."
value = azurerm_cognitive_account.this.endpoint
Expand Down Expand Up @@ -31,9 +36,3 @@ output "private_ip_addresses" {
for key, pe in azurerm_private_endpoint.this : key => pe.private_service_connection[0].private_ip_address
}
}

output "cognitive_account_identity" {
description = "The identity block exports the Principal ID and the Tenant ID associated with this Managed Service Identity."
value = try(azurerm_cognitive_account.this.identity[0], null)
}

0 comments on commit 4ac958c

Please sign in to comment.