You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Windows Managed Instance uses isCustomMode, install scripts, and plan default identity
386
+
# This is the module call to create the App Service Managed Instance plan with custom configuration using install scripts, registry adapters, and storage mounts.
378
387
module "test" {
379
388
source = "../.."
380
389
@@ -384,9 +393,10 @@ module "test" {
384
393
parent_id = azapi_resource.resource_group.id
385
394
enable_telemetry = var.enable_telemetry
386
395
# Install scripts - references the scripts.zip blob in the storage account
396
+
# The install script logs can be found in C:\InstallScripts on the VM instances
# Registry adapters - configure Windows registry keys via Key Vault references
407
417
registry_adapters = [
408
418
{
409
-
registry_key = "HKEY_LOCAL_MACHINE/SOFTWARE/MyApp/Config" # Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
419
+
registry_key = "HKEY_LOCAL_MACHINE/SOFTWARE/MyApp1/RegistryAdapterString" # Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
registry_key = "HKEY_LOCAL_MACHINE/SOFTWARE/MyApp/DWordData" # Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
426
+
registry_key = "HKEY_LOCAL_MACHINE/SOFTWARE/MyApp1/RegistryAdapterDWORD" # Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
# Windows Managed Instance uses isCustomMode, install scripts, and plan default identity
374
+
# This is the module call to create the App Service Managed Instance plan with custom configuration using install scripts, registry adapters, and storage mounts.
366
375
module"test" {
367
376
source="../.."
368
377
@@ -372,9 +381,10 @@ module "test" {
372
381
parent_id=azapi_resource.resource_group.id
373
382
enable_telemetry=var.enable_telemetry
374
383
# Install scripts - references the scripts.zip blob in the storage account
384
+
# The install script logs can be found in C:\InstallScripts on the VM instances
# Registry adapters - configure Windows registry keys via Key Vault references
395
405
registry_adapters=[
396
406
{
397
-
registry_key ="HKEY_LOCAL_MACHINE/SOFTWARE/MyApp/Config"# Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
407
+
registry_key ="HKEY_LOCAL_MACHINE/SOFTWARE/MyApp1/RegistryAdapterString"# Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
registry_key ="HKEY_LOCAL_MACHINE/SOFTWARE/MyApp/DWordData"# Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
414
+
registry_key ="HKEY_LOCAL_MACHINE/SOFTWARE/MyApp1/RegistryAdapterDWORD"# Registry key must start with HKEY_LOCAL_MACHINE, HKEY_CURRENT_USER, or HKEY_USERS and contain at least one forward slash.
0 commit comments