Skip to content
Open
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
4 changes: 3 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ package-lock=true
# Use color in npm output
color=true
# Set log level to warn by default
loglevel=warn
loglevel=warn
# Disable postinstall scripts for supply chain security hardening
ignore-scripts=true
2 changes: 1 addition & 1 deletion blueprints/azure-local/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Deploys the cloud and edge resources required to run Azure IoT Operations on an
| azure\_local\_control\_plane\_count | Number of control plane nodes for Azure Local cluster | `number` | `1` | no |
| azure\_local\_control\_plane\_vm\_size | VM size for control plane nodes in Azure Local cluster | `string` | `"Standard_A4_v2"` | no |
| azure\_local\_node\_pool\_count | Number of worker nodes in the default node pool for Azure Local cluster | `number` | `1` | no |
| azure\_local\_node\_pool\_vm\_size | VM size for worker nodes in Azure Local cluster | `string` | `"Standard_D8s_v3"` | no |
| azure\_local\_node\_pool\_vm\_size | VM size for worker nodes in Azure Local cluster | `string` | `"Standard_D8s_v6"` | no |
| azure\_local\_pod\_cidr | CIDR range for Kubernetes pods in Azure Local cluster | `string` | `"10.244.0.0/16"` | no |
| custom\_locations\_oid | Resource ID of the custom location for the Azure Stack HCI cluster | `string` | `null` | no |
| instance | Instance identifier for naming resources: 001, 002, etc | `string` | `"001"` | no |
Expand Down
6 changes: 5 additions & 1 deletion blueprints/azure-local/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ module "cloud_security_identity" {
should_enable_purge_protection = var.should_enable_key_vault_purge_protection
should_create_aks_identity = false
should_create_ml_workload_identity = false
log_analytics_workspace_id = module.cloud_observability.log_analytics_workspace.id
should_enable_diagnostic_settings = true
}

module "cloud_observability" {
Expand Down Expand Up @@ -102,7 +104,9 @@ module "cloud_messaging" {
resource_prefix = var.resource_prefix
instance = var.instance

should_create_azure_functions = var.should_create_azure_functions
should_create_azure_functions = var.should_create_azure_functions
log_analytics_workspace_id = module.cloud_observability.log_analytics_workspace.id
should_enable_diagnostic_settings = true
}

module "azure_local_host" {
Expand Down
2 changes: 1 addition & 1 deletion blueprints/azure-local/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ variable "azure_local_control_plane_vm_size" {
variable "azure_local_node_pool_vm_size" {
type = string
description = "VM size for worker nodes in Azure Local cluster"
default = "Standard_D8s_v3"
default = "Standard_D8s_v6"
}

variable "azure_local_pod_cidr" {
Expand Down
Loading
Loading