Skip to content

Commit

Permalink
chore(main): release 2.0.0 (#112)
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 Jun 6, 2024
1 parent a2cc6e9 commit 0cd215c
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 8 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [2.0.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v1.13.0...v2.0.0) (2024-06-06)


### ⚠ BREAKING CHANGES

* Introduction of optional multiple IP configurations alters the data structure, making the change not backwards compatible

### Features

* **deps:** bump github.com/Azure/azure-sdk-for-go/sdk/azidentity ([#102](https://github.com/CloudNationHQ/terraform-azure-vm/issues/102)) ([637208c](https://github.com/CloudNationHQ/terraform-azure-vm/commit/637208cdd016de940b5f9c202d00711351e7b784))
* **deps:** bump github.com/hashicorp/go-getter in /tests ([#104](https://github.com/CloudNationHQ/terraform-azure-vm/issues/104)) ([d77904f](https://github.com/CloudNationHQ/terraform-azure-vm/commit/d77904fc33fbb062d4eb36702b8ba47a05500b11))
* **deps:** bump golang.org/x/net from 0.19.0 to 0.23.0 in /tests ([#103](https://github.com/CloudNationHQ/terraform-azure-vm/issues/103)) ([a2cc6e9](https://github.com/CloudNationHQ/terraform-azure-vm/commit/a2cc6e952e8ce87f5593a13e22bd2c7a780c9b9e))
* support multiple IP configurations per interface ([#111](https://github.com/CloudNationHQ/terraform-azure-vm/issues/111)) ([41373cd](https://github.com/CloudNationHQ/terraform-azure-vm/commit/41373cd8b64e1bfb79b333fc6f2ae34b8ee7aee8))

## [1.13.0](https://github.com/CloudNationHQ/terraform-azure-vm/compare/v1.12.0...v1.13.0) (2024-04-10)


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.13"
version = "~> 2.0"
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 = "~> 1.13"
version = "~> 2.0"
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 = "~> 1.13"
version = "~> 2.0"
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 = "~> 1.13"
version = "~> 2.0"
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.13"
version = "~> 2.0"
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 = "~> 1.13"
version = "~> 2.0"
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.13"
version = "~> 2.0"
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 = "~> 1.13"
version = "~> 2.0"
keyvault = module.kv.vault.id
naming = local.naming
Expand Down

0 comments on commit 0cd215c

Please sign in to comment.