Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,32 @@ resource "azapi_resource" "resourceGroup" {
}

resource "azapi_resource" "redisEnterprise" {
type = "Microsoft.Cache/redisEnterprise@2024-10-01"
type = "Microsoft.Cache/redisEnterprise@2025-04-01"
parent_id = azapi_resource.resourceGroup.id
name = var.resource_name
location = var.location
body = {
properties = {
minimumTlsVersion = "1.2"
encryption = {}
highAvailability = "Enabled"
}
sku = {
capacity = 4
name = "Enterprise_E20"
name = "Balanced_B0"
}
}

identity {
type = "SystemAssigned"
identity_ids = []
}

schema_validation_enabled = false
response_export_values = ["*"]
}

resource "azapi_resource" "databas" {
type = "Microsoft.Cache/redisEnterprise/databases@2024-10-01"
resource "azapi_resource" "defaultDatabase" {
type = "Microsoft.Cache/redisEnterprise/databases@2025-04-01"
parent_id = azapi_resource.redisEnterprise.id
name = "default"
body = {
Expand Down
13 changes: 10 additions & 3 deletions settings/remarks/microsoft.cache/samples/redisenterprise/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,26 @@ resource "azapi_resource" "resourceGroup" {
}

resource "azapi_resource" "redisEnterprise" {
type = "Microsoft.Cache/redisEnterprise@2022-01-01"
type = "Microsoft.Cache/redisEnterprise@2025-04-01"
parent_id = azapi_resource.resourceGroup.id
name = var.resource_name
location = var.location
body = {
properties = {
minimumTlsVersion = "1.2"
encryption = {}
highAvailability = "Enabled"
}
sku = {
capacity = 2
name = "Enterprise_E100"
name = "Balanced_B0"
}
}

identity {
type = "SystemAssigned"
identity_ids = []
}

schema_validation_enabled = false
response_export_values = ["*"]
}
Expand Down
12 changes: 11 additions & 1 deletion settings/remarks/microsoft.cognitiveservices/remarks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,23 @@
{
"ResourceType": "Microsoft.CognitiveServices/accounts",
"Path": "samples/accounts/main.tf",
"Description": "A basic example of deploying AI Services Account."
"Description": "A basic example of deploying Cognitive Services Account."
},
{
"ResourceType": "Microsoft.CognitiveServices/accounts/connections",
"Path": "samples/accounts/connections/main.tf",
"Description": "A basic example of deploying Cognitive Services Account Connection."
},
{
"ResourceType": "Microsoft.CognitiveServices/accounts/deployments",
"Path": "samples/accounts/deployments/main.tf",
"Description": "A basic example of deploying Cognitive Services Account Deployment."
},
{
"ResourceType": "Microsoft.CognitiveServices/accounts/projects",
"Path": "samples/accounts/projects/main.tf",
"Description": "A basic example of deploying Cognitive Services Account Project."
},
{
"ResourceType": "Microsoft.CognitiveServices/accounts/raiBlocklists",
"Path": "samples/accounts/raiblocklists/main.tf",
Expand Down
Loading