generated from cloud-native-toolkit/template-terraform-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.yaml
63 lines (63 loc) · 1.86 KB
/
module.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: azure-vpn-server
type: terraform
description: Module to provision vpn-server on azure
tags:
- azure
- azure-vm
- virtual-machine
- azure-vpn-server
versions:
- platforms: []
providers:
- name: azurerm
source: "hashicorp/azurerm"
dependencies:
- id: resource_group
refs:
- source: github.com/cloud-native-toolkit/terraform-azure-resource-group
version: ">= 1.1.1"
- id: vnet
refs:
- source: github.com/cloud-native-toolkit/terraform-azure-vnet
version: ">= 1.1.3"
- id: subnet
refs:
- source: github.com/cloud-native-toolkit/terraform-azure-subnets
version: ">= 1.3.8"
- id: ssh_key
refs:
- source: github.com/cloud-native-toolkit/terraform-azure-ssh-key
version: ">= 1.0.6"
variables:
- name: resource_group_name
moduleRef:
id: resource_group
output: name
- name: virtual_network_name
moduleRef:
id: vnet
output: name
- name: subnet_id
moduleRef:
id: subnet
output: id
- name: pub_ssh_key_file
moduleRef:
id: ssh_key
output: pub_key_file
- name: private_key_file
moduleRef:
id: ssh_key
output: private_key_file
outputs:
- name: id
description: "The Azure id of the created VPN server"
- name: vm_public_ip
description: "The public IP address of the created VPN server"
- name: admin_username
description: "The administrator username of the created VPN server"
- name: vm_private_ip
description: "The private IP address of the created VPN server"
- name: client_config_file
description: "The full path and filename of the created VPN client connection file"
cloudProvider: azure