Skip to content

Commit

Permalink
chore(main): release 2.2.0 (#120)
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 Jul 2, 2024
1 parent 9d3aa6d commit 2d01a5a
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [2.2.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v2.1.0...v2.2.0) (2024-07-02)


### Features

* add issue template ([#119](https://github.com/CloudNationHQ/terraform-azure-vm/issues/119)) ([75e1343](https://github.com/CloudNationHQ/terraform-azure-vm/commit/75e1343e043fb7a0d6ad74e0f1199716d74215f5))
* **deps:** bump github.com/Azure/azure-sdk-for-go/sdk/azidentity ([#115](https://github.com/CloudNationHQ/terraform-azure-vm/issues/115)) ([d8d5bf0](https://github.com/CloudNationHQ/terraform-azure-vm/commit/d8d5bf04caf6ab332b276be639f4b4d4b6a33528))
* **deps:** bump github.com/Azure/azure-sdk-for-go/sdk/azidentity ([#116](https://github.com/CloudNationHQ/terraform-azure-vm/issues/116)) ([9d3aa6d](https://github.com/CloudNationHQ/terraform-azure-vm/commit/9d3aa6da0c53512563771bf5411cd85712a5d424))
* **deps:** bump github.com/gruntwork-io/terratest in /tests ([#118](https://github.com/CloudNationHQ/terraform-azure-vm/issues/118)) ([f1e5f7a](https://github.com/CloudNationHQ/terraform-azure-vm/commit/f1e5f7af50eb85f8999a3152ed5e1b37bb9d2576))
* **deps:** bump github.com/hashicorp/go-getter in /tests ([#117](https://github.com/CloudNationHQ/terraform-azure-vm/issues/117)) ([6c48c7b](https://github.com/CloudNationHQ/terraform-azure-vm/commit/6c48c7bdb0e48ca9595f22c5d8354455883654bb))

## [2.1.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v2.0.0...v2.1.0) (2024-06-07)


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 = "~> 2.1"
version = "~> 2.2"
naming = local.naming
depends_on = [module.kv]
Expand Down
2 changes: 1 addition & 1 deletion examples/availability-sets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example outlines the configuration and deployment of availability sets to e
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.1"
version = "~> 2.2"
naming = local.naming
keyvault = module.kv.vault.id
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 = "~> 2.1"
version = "~> 2.2"
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 @@ -5,7 +5,7 @@ This example details the setup and utilization of custom data and cloud-init.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.1"
version = "~> 2.2"
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 = "~> 2.1"
version = "~> 2.2"
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 @@ -5,7 +5,7 @@ This example illustrates the implementation of extensions.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.1"
version = "~> 2.2"
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 = "~> 2.1"
version = "~> 2.2"
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 @@ -5,7 +5,7 @@ This section details the support for windows virtual machines.
```hcl
module "vm" {
source = "cloudnationhq/vm/azure"
version = "~> 2.1"
version = "~> 2.2"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down

0 comments on commit 2d01a5a

Please sign in to comment.