@pulumi/google-compliance-policies
Version:
This repository contains a growing set of Compliance Policies to validate your infrastructure using Pulumi's Crossguard Policy-as-Code framework.
26 lines (25 loc) • 783 B
TypeScript
import { ResourceValidationPolicy } from "@pulumi/policy";
declare namespace Node {
/**
* Disallow the use of non-stable (Alpha) resouces (tpu.v2alpha1.Node).
*
* @severity medium
* @frameworks none
* @topics alpha, api, unstable
* @link https://cloud.google.com/apis/design/versioning
*/
const disallowAlphaResource: ResourceValidationPolicy;
}
export { Node };
declare namespace QueuedResource {
/**
* Disallow the use of non-stable (Alpha) resouces (tpu.v2alpha1.QueuedResource).
*
* @severity medium
* @frameworks none
* @topics alpha, api, unstable
* @link https://cloud.google.com/apis/design/versioning
*/
const disallowAlphaResource: ResourceValidationPolicy;
}
export { QueuedResource };