Skip to content

Commit

Permalink
Added schema.yaml for Resource Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
hyder committed Jun 24, 2020
2 parents 9bce3d5 + 3d2ad71 commit b56ed44
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions schema.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
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


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_cidr:
type: string
title: VCN CIDR
default: 10.0.0.0/16
required: true

vcn_name:
type: string
title: VCN Name
required: true
default: vcn

vcn_dns_label:
type: string
required: true
default: vcn

tags:
type: map
visible: false

0 comments on commit b56ed44

Please sign in to comment.