forked from oracle-terraform-modules/terraform-oci-vcn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.yaml
66 lines (57 loc) · 1.37 KB
/
schema.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
64
65
66
schemaVersion: 1.1.0
version: "20190304"
locale: "en"
groupings:
- title: "Create A VCN with optional gateways"
variables:
- region
- compartment_id
- vcn_cidr
- vcn_name
- vcn_dns_label
- lockdown_default_seclist
variables:
region:
type: oci:identity:region:name
title: Region
description: The OCI region where resources will be created
required: true
compartment_id:
type: oci:identity:compartment:id
title: Target Compartment
description: The target compartment id where to create all resources
required: true
label_prefix:
type: string
title: Label Prefix
description: a string that will be prepended to all resources
required: false
default: dev
vcn_cidrs:
type: list(string)
title: VCN CIDR
default: ["10.0.0.0/16"]
required: true
vcn_name:
type: string
title: VCN Name
required: true
default: Test VCN
vcn_dns_label:
title: VCN DNS Label
type: string
required: false
default: vcn
lockdown_default_seclist:
title: Enable VCN Default Security List Lockdown
type: string
required: false
default: true
attached_drg_id:
title: DRG OCID to attach to the VCN
type: string
required: false
default: null
freeform_tags:
type: map
visible: false