-
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.
feat!: aligned several properties and resources (#47)
* feat!: aligned several properties and resources BREAKING CHANGE: * data structure has changed due to renaming of properties and removal of resources. * feat: fix linting issues --------- Co-authored-by: dkool <dkool@dkools-MacBook-Pro.local>
- Loading branch information
Showing
51 changed files
with
194 additions
and
1,839 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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,20 +1,15 @@ | ||
This example illustrates the defaul tvirtual wan setup, in its simplest form. | ||
# Default | ||
|
||
## Usage | ||
This example illustrates the default setup, in its simplest form. | ||
|
||
```hcl | ||
module "vwan" { | ||
source = "cloudnationhq/vwan/azure" | ||
version = "~> 0.11" | ||
naming = local.naming | ||
## Types | ||
|
||
resourcegroup = module.rg.groups.demo.name | ||
location = module.rg.groups.demo.location | ||
vwan = { | ||
allow_branch_to_branch_traffic = true | ||
disable_vpn_encryption = false | ||
} | ||
} | ||
```hcl | ||
vwan = object({ | ||
name = string | ||
resource_group = string | ||
location = string | ||
allow_branch_to_branch_traffic = optional(bool) | ||
disable_vpn_encryption = optional(bool) | ||
}) | ||
``` |
Oops, something went wrong.