-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
42 additions
and
14 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
7 changes: 0 additions & 7 deletions
7
core/src/epicli/data/azure/defaults/infrastructure/network.yml
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
core/src/epicli/data/azure/defaults/infrastructure/vnet.yml
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,10 @@ | ||
kind: infrastructure/vnet | ||
version: 0.3.0 | ||
title: "VNET Config" | ||
provider: azure | ||
name: default | ||
specification: | ||
name: SET_BY_AUTOMATION | ||
address_space: SET_BY_AUTOMATION | ||
location: SET_BY_AUTOMATION | ||
resource_group_name: SET_BY_AUTOMATION |
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
core/src/epicli/data/azure/terraform/infrastructure/network.j2
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
core/src/epicli/data/azure/terraform/infrastructure/vnet.j2
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,18 @@ | ||
##################################################### | ||
# DO NOT Modify by hand - Managed by Automation | ||
##################################################### | ||
##################################################### | ||
# This file can be used as a base template to build other Terraform files. It attempts to use as much | ||
# Terraform interprolation as possible by creating Terraform variables instead of changing inline | ||
# this approach provides an easier way to do creative looping, fetch IDs of created resources etc. | ||
##################################################### | ||
##################################################### | ||
# {{ specification.name }} | ||
##################################################### | ||
|
||
resource "azurerm_virtual_network" "vnet" { | ||
name = "{{ specification.name }}" | ||
address_space = ["{{ specification.address_space }}"] | ||
location = "{{ specification.location }}" | ||
resource_group_name = "{{ specification.resource_group_name }}" | ||
} |
File renamed without changes.