Skip to content

Commit

Permalink
Merge pull request #2 from qbeyond/feature/output-nic
Browse files Browse the repository at this point in the history
output nic
  • Loading branch information
QBY-ChristianHartmann authored Jul 31, 2024
2 parents 9b949d9 + fd195a9 commit b01b208
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ 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
### Changed

### Removed

### Fixed
### Fixed
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ resource "azurerm_subnet" "this" {
| Name | Description |
|------|-------------|
| <a name="output_data_disks"></a> [data\_disks](#output\_data\_disks) | n/a |
| <a name="output_network_interface"></a> [network\_interface](#output\_network\_interface) | n/a |
| <a name="output_virtual_machine"></a> [virtual\_machine](#output\_virtual\_machine) | n/a |

## Resource types
Expand Down
4 changes: 4 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ output "virtual_machine" {

output "data_disks" {
value = azurerm_managed_disk.data_disk
}

output "network_interface" {
value = azurerm_network_interface.this
}

0 comments on commit b01b208

Please sign in to comment.