-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore:docs: remove versions and add docs toe examples
- Loading branch information
1 parent
c2c1d75
commit d10b571
Showing
3 changed files
with
36 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Terraform module | AzureRM - Virtual Network | ||
|
||
This Terraform module is designed to create a virtual network for Azure. | ||
|
||
## Pre-requisites | ||
|
||
Using the modules requires the following pre-requisites: | ||
* Active Azure account and subscription | ||
|
||
## Usage | ||
|
||
`virtual-network` | ||
|
||
```hcl | ||
module "virtual-network" { | ||
source = "TheIronRock95/virtualnetwork/azurerm" | ||
version = "x.x.x" | ||
name = var.virtual_network_name | ||
location = var.azure_location | ||
resource_group_name = var.resource_group_name | ||
address_space = var.virtual_network_cidr | ||
} | ||
``` | ||
|
||
## Authors | ||
|
||
The module is maintained by [Wouter Damman](https://github.com/TheIronRock95) | ||
|
||
## Documentation | ||
|
||
> product: https://azure.microsoft.com/en-us/ | ||
> | ||
> Provider: https://registry.terraform.io/providers/hashicorp/azurerm/latest | ||
> | ||
> Documentation: https://learn.microsoft.com/en-us/azure/?product=popular |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.