import * as k8s from "@pulumi/kubernetes"; import * as pulumi from "@pulumi/pulumi"; /** Arguments to pod security policy functions. */ export interface PodSecurityPolicyArgs { /** Kubernetes provider */ provider: k8s.Provider; /** Optional name of resource to create. */ name?: string; /** * Options to use when creating the resources. The Kubernetes * provider will be automatically set as the provider. */ options?: pulumi.CustomResourceOptions; } /** * Create the customer-restricted pod security policy. */ export declare function podSecurityPolicyCustomerRestricted(args: PodSecurityPolicyArgs): k8s.policy.v1beta1.PodSecurityPolicy; /** * Create a network policy that allows ingress to an ingress * controller. */ export declare function podSecurityPolicyCustomerTrusted(args: PodSecurityPolicyArgs): k8s.policy.v1beta1.PodSecurityPolicy; //# sourceMappingURL=policy.d.ts.map