diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7139920..ed61089 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,7 +6,12 @@ and this module adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.
## [Unreleased]
-## [1.0.0] - 2024-01-11
+## [1.1.0] - 2024-01-11
+
+### Added
+ - Output the network interface
+
+## [1.0.0] - 2024-01-11
### Added
- Initial code that creates a VM
@@ -14,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
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
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