From 1a944eae4737862b003c877bb7333ffdc6a1d6d5 Mon Sep 17 00:00:00 2001 From: QBY-ChristianHartmann <127933001+QBY-ChristianHartmann@users.noreply.github.com> Date: Wed, 31 Jul 2024 15:01:47 +0200 Subject: [PATCH 1/3] output nic --- CHANGELOG.md | 5 +++++ outputs.tf | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7139920..647fa39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0. ## [Unreleased] +## [1.1.0] - 2024-01-11 + +### Added + - Output the network interface + ## [1.0.0] - 2024-01-11 ### Added diff --git a/outputs.tf b/outputs.tf index 8d8ebac..b7b13f7 100644 --- a/outputs.tf +++ b/outputs.tf @@ -4,4 +4,8 @@ output "virtual_machine" { output "data_disks" { value = azurerm_managed_disk.data_disk +} + +output "network_interface" { + value = azurerm_network_interface.this } \ No newline at end of file From a985db094a0219f9c157fcb5ab0e194b9d53e061 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 31 Jul 2024 13:03:24 +0000 Subject: [PATCH 2/3] terraform-docs: automated action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0b6069e..f94ff95 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ resource "azurerm_subnet" "this" { | Name | Description | |------|-------------| | [data\_disks](#output\_data\_disks) | n/a | +| [network\_interface](#output\_network\_interface) | n/a | | [virtual\_machine](#output\_virtual\_machine) | n/a | ## Resource types From fd195a9265952be6c61236c485086914f5d76fbf Mon Sep 17 00:00:00 2001 From: QBY-ChristianHartmann <127933001+QBY-ChristianHartmann@users.noreply.github.com> Date: Wed, 31 Jul 2024 15:31:01 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 647fa39..ed61089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0. ### Added - Output the network interface -## [1.0.0] - 2024-01-11 +## [1.0.0] - 2024-01-11 ### Added - Initial code that creates a VM @@ -19,4 +19,4 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0. ### Removed -### Fixed \ No newline at end of file +### Fixed