Skip to content

Commit

Permalink
README and CHANGELOG update
Browse files Browse the repository at this point in the history
  • Loading branch information
oraziobattaglia committed Oct 20, 2023
1 parent cfa3ad2 commit 5a26121
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## v0.6.9

Features:

For the Windows vms:
- Added vars identity_type, identity_ids to configure Managed Service Identity
- Added var aad_login_for_windows to join the vms to Azure Active Directory

## v0.6.8

Features:
Expand Down
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Deploys:

```hcl
# Linux vm example
module "my_module" {
source = "oraziobattaglia/compute/azurerm"
Expand Down Expand Up @@ -90,4 +91,38 @@ module "my_module" {
linux_cs_command = "bash customize_linux.bash"
}
# Windows vm example
module "my_module" {
source = "oraziobattaglia/compute/azurerm"
location = var.location
resource_group = var.resource_group
virtual_machine_instances = "1"
virtual_machine_names = ["my_vm"]
subnet_id = var.subnet_id
private_ip_address_allocation = "Dynamic"
is_windows = true
vm_size = "Standard_B2ms"
storage_account_type = "StandardSSD_LRS"
vm_os_publisher = "microsoftwindowsdesktop"
vm_os_offer = "windows-11"
vm_os_sku = "win11-22h2-pro"
vm_os_version = "latest"
admin_username = var.admin_username
admin_password = var.admin_password
boot_diagnostics = false
backup_enabled = false
customize = false
join = false
identity_type = "SystemAssigned"
aad_login_for_windows = true
}
```

0 comments on commit 5a26121

Please sign in to comment.