From a6ec011eb11b0896bc47f5d013cbadffd63e9a89 Mon Sep 17 00:00:00 2001 From: Saverio Proto Date: Mon, 16 Oct 2023 08:54:58 +0200 Subject: [PATCH] Fix README after PR #36 --- README.md | 1 + test/go.mod | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c620f1..7e95d30 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,7 @@ No modules. | [resource\_group\_name](#input\_resource\_group\_name) | Name of the azure resource group to use. The resource group must exist. | `string` | n/a | yes | | [sku\_name](#input\_sku\_name) | Specifies the SKU Name for this Cognitive Service Account. Possible values are `F0`, `F1`, `S0`, `S`, `S1`, `S2`, `S3`, `S4`, `S5`, `S6`, `P0`, `P1`, `P2`, `E0` and `DC0`. Default to `S0`. | `string` | `"S0"` | no | | [storage](#input\_storage) | type = list(object({
storage\_account\_id = (Required) Full resource id of a Microsoft.Storage resource.
identity\_client\_id = (Optional) The client ID of the managed identity associated with the storage resource.
})) |
list(object({
storage_account_id = string
identity_client_id = optional(string)
}))
| `[]` | no | +| [tags](#input\_tags) | (Optional) A mapping of tags to assign to the resource. | `map(string)` | `{}` | no | | [tracing\_tags\_enabled](#input\_tracing\_tags\_enabled) | Whether enable tracing tags that generated by BridgeCrew Yor. | `bool` | `false` | no | | [tracing\_tags\_prefix](#input\_tracing\_tags\_prefix) | Default prefix for generated tracing tags | `string` | `"avm_"` | no | diff --git a/test/go.mod b/test/go.mod index cb80bd4..783129e 100644 --- a/test/go.mod +++ b/test/go.mod @@ -1,6 +1,8 @@ module github.com/Azure/terraform-azurerm-azureopenai -go 1.19 +go 1.21.1 + +toolchain go1.21.2 require ( github.com/Azure/terraform-module-test-helper v0.16.0