UNPKG

@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.

62 lines (61 loc) 1.9 kB
import { ResourceValidationPolicy } from "@pulumi/policy"; declare namespace App { /** * Disallow the use of non-stable (Beta) resouces (appengine.v1beta.App). * * @severity medium * @frameworks none * @topics api, beta, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowBetaResource: ResourceValidationPolicy; } export { App }; declare namespace AuthorizedCertificate { /** * Disallow the use of non-stable (Beta) resouces (appengine.v1beta.AuthorizedCertificate). * * @severity medium * @frameworks none * @topics api, beta, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowBetaResource: ResourceValidationPolicy; } export { AuthorizedCertificate }; declare namespace DomainMapping { /** * Disallow the use of non-stable (Beta) resouces (appengine.v1beta.DomainMapping). * * @severity medium * @frameworks none * @topics api, beta, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowBetaResource: ResourceValidationPolicy; } export { DomainMapping }; declare namespace IngressRule { /** * Disallow the use of non-stable (Beta) resouces (appengine.v1beta.IngressRule). * * @severity medium * @frameworks none * @topics api, beta, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowBetaResource: ResourceValidationPolicy; } export { IngressRule }; declare namespace Version { /** * Disallow the use of non-stable (Beta) resouces (appengine.v1beta.Version). * * @severity medium * @frameworks none * @topics api, beta, unstable * @link https://cloud.google.com/apis/design/versioning */ const disallowBetaResource: ResourceValidationPolicy; } export { Version };