generated from pulumi/pulumi-component-provider-go-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.yaml
83 lines (83 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# yaml-language-server: $schema=https://raw.githubusercontent.com/pulumi/pulumi/master/pkg/codegen/schema/pulumi.json
---
name: oci-vcn
resources:
oci-vcn:index:Vcn:
isComponent: true
inputProperties:
compartmentId:
type: string
description: Compartment ID to deploy into
cidrBlock:
type: string
description: "Cidr block to use for VCN"
plain: true
dnsLabel:
type: string
description: "DNS labels for VCN"
ipv6Enabled:
type: boolean
description: "Enable ipv6 for VCN"
numberOfSubnets:
type: number
description: "Number of public and private subnets to create"
plain: true
createInternetGateway:
type: boolean
plain: true
createServiceGateway:
type: boolean
plain: true
createNatGateway:
type: boolean
plain: true
requiredInputs:
- compartmentId
- cidrBlock
properties:
vcnId:
type: string
description: The ID of the VCN.
publicSubnetIds:
type: array
description: The IDs of the public subnets.
items:
type: string
privateSubnetIds:
type: array
description: The IDs of the private subnets.
items:
type: string
internetGatewayId:
type: string
description: The ID of the internet gateway.
serviceGatewayId:
type: string
description: The ID of the service gateway.
natGatewayId:
type: string
description: The ID of the NAT gateway.
required:
- vcnId
- publicSubnetIds
- privateSubnetIds
language:
csharp:
packageReferences:
Pulumi: 3.*
Pulumi.Oci: 0.*
rootNamespaces: Lbrlabs.PulumiPackage
go:
generateResourceContainerTypes: true
importBasePath: github.com/lbrlabs/pulumi-oci-vcn/sdk/go/vcn
nodejs:
dependencies:
"@pulumi/oci": "^0.5.0"
devDependencies:
typescript: "^3.7.0"
packageName: "@lbrlabs/pulumi-oci-vcn"
python:
packageName: lbrlabs_pulumi_oci_vcn
requires:
pulumi: ">=3.0.0,<4.0.0"
pulumi-oci: ">=0.0.0,<1.0.0"