Skip to content

Commit

Permalink
chore(main): release 1.12.0 (#97)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Apr 3, 2024
1 parent 5efce4e commit 5e0ccc2
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.12.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v1.11.0...v1.12.0) (2024-04-03)


### Features

* add lifecycle ignore encryption settings managed disks ([#98](https://github.com/CloudNationHQ/terraform-azure-vm/issues/98)) ([5efce4e](https://github.com/CloudNationHQ/terraform-azure-vm/commit/5efce4e9f69759890dd1e3d941161be1f96a29dd))
* update documentation ([#96](https://github.com/CloudNationHQ/terraform-azure-vm/issues/96)) ([cffc8f4](https://github.com/CloudNationHQ/terraform-azure-vm/commit/cffc8f4395a450a976746ddae6759004640ecff9))

## [1.11.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v1.10.0...v1.11.0) (2024-03-26)


Expand Down
2 changes: 1 addition & 1 deletion examples/authentication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To utilize the generated password or ssh key, simply specify the key vault id in
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.3"
version = "~> 1.12"
naming = local.naming
depends_on = [module.kv]
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example highlights the complete usage.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.3"
version = "~> 1.12"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/custom-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This example details the setup and utilization of custom data and cloud-init.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.11"
version = "~> 1.12"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example illustrates the default virtual machine setup, in its simplest form
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.11"
version = "~> 1.12"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This example illustrates the implementation of extensions.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.11"
version = "~> 1.12"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-nics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This section outlines the configuration of multiple network interfaces, enabling
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.11"
version = "~> 1.12"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The following example can be used for referencing specific subnets in configurat
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.11"
version = "~> 1.12"
naming = local.naming
keyvault = module.kv.vault.id
Expand Down
2 changes: 1 addition & 1 deletion examples/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ This section details the support for windows virtual machines.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 1.11"
version = "~> 1.12"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down

0 comments on commit 5e0ccc2

Please sign in to comment.