HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pulumi schema — Check a Pulumi package schema for errors. Schema reference: <https://www.pulumi.com/docs/iac/extendi

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandclicheckpulumi schemapackageforpulumischema

Problem

How to use the pulumi schema command: Check a Pulumi package schema for errors. Schema reference: <https://www.pulumi.com/docs/iac/extending-pulumi/schema/>. More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_schema/>.

Solution

pulumi schema — Check a Pulumi package schema for errors. Schema reference: <https://www.pulumi.com/docs/iac/extending-pulumi/schema/>. More information: <https://www.pulumi.com/docs/iac/cli/commands/pulumi_schema/>.

Check a package schema:
pulumi schema check {{path/to/file}}


Check a package schema without failing if the reference to a type is missing:
pulumi schema check --allow-dangling-references {{path/to/file}}


Display help:
pulumi schema check {{[-h|--help]}}

Code Snippets

Check a package schema

pulumi schema check {{path/to/file}}

Check a package schema without failing if the reference to a type is missing

pulumi schema check --allow-dangling-references {{path/to/file}}

Display help

pulumi schema check {{[-h|--help]}}

Context

tldr-pages: common/pulumi schema

Revisions (0)

No revisions yet.