gcp.folder.OrganizationPolicy
Explore with Pulumi AI
Allows management of Organization Policies for a Google Cloud Folder.
Warning: This resource has been superseded by
gcp.orgpolicy.Policy
.gcp.orgpolicy.Policy
uses Organization Policy API V2 instead of Cloud Resource Manager API V1 and it supports additional features such as tags and conditions.
To get more information about Organization Policies, see:
Example Usage
To set policy with a boolean constraint:
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const serialPortPolicy = new gcp.folder.OrganizationPolicy("serial_port_policy", {
folder: "folders/123456789",
constraint: "compute.disableSerialPortAccess",
booleanPolicy: {
enforced: true,
},
});
import pulumi
import pulumi_gcp as gcp
serial_port_policy = gcp.folder.OrganizationPolicy("serial_port_policy",
folder="folders/123456789",
constraint="compute.disableSerialPortAccess",
boolean_policy={
"enforced": True,
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/folder"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := folder.NewOrganizationPolicy(ctx, "serial_port_policy", &folder.OrganizationPolicyArgs{
Folder: pulumi.String("folders/123456789"),
Constraint: pulumi.String("compute.disableSerialPortAccess"),
BooleanPolicy: &folder.OrganizationPolicyBooleanPolicyArgs{
Enforced: pulumi.Bool(true),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var serialPortPolicy = new Gcp.Folder.OrganizationPolicy("serial_port_policy", new()
{
Folder = "folders/123456789",
Constraint = "compute.disableSerialPortAccess",
BooleanPolicy = new Gcp.Folder.Inputs.OrganizationPolicyBooleanPolicyArgs
{
Enforced = true,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.folder.OrganizationPolicy;
import com.pulumi.gcp.folder.OrganizationPolicyArgs;
import com.pulumi.gcp.folder.inputs.OrganizationPolicyBooleanPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var serialPortPolicy = new OrganizationPolicy("serialPortPolicy", OrganizationPolicyArgs.builder()
.folder("folders/123456789")
.constraint("compute.disableSerialPortAccess")
.booleanPolicy(OrganizationPolicyBooleanPolicyArgs.builder()
.enforced(true)
.build())
.build());
}
}
resources:
serialPortPolicy:
type: gcp:folder:OrganizationPolicy
name: serial_port_policy
properties:
folder: folders/123456789
constraint: compute.disableSerialPortAccess
booleanPolicy:
enforced: true
To set a policy with a list constraint:
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const servicesPolicy = new gcp.folder.OrganizationPolicy("services_policy", {
folder: "folders/123456789",
constraint: "serviceuser.services",
listPolicy: {
allow: {
all: true,
},
},
});
import pulumi
import pulumi_gcp as gcp
services_policy = gcp.folder.OrganizationPolicy("services_policy",
folder="folders/123456789",
constraint="serviceuser.services",
list_policy={
"allow": {
"all": True,
},
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/folder"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := folder.NewOrganizationPolicy(ctx, "services_policy", &folder.OrganizationPolicyArgs{
Folder: pulumi.String("folders/123456789"),
Constraint: pulumi.String("serviceuser.services"),
ListPolicy: &folder.OrganizationPolicyListPolicyArgs{
Allow: &folder.OrganizationPolicyListPolicyAllowArgs{
All: pulumi.Bool(true),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var servicesPolicy = new Gcp.Folder.OrganizationPolicy("services_policy", new()
{
Folder = "folders/123456789",
Constraint = "serviceuser.services",
ListPolicy = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyArgs
{
Allow = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyAllowArgs
{
All = true,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.folder.OrganizationPolicy;
import com.pulumi.gcp.folder.OrganizationPolicyArgs;
import com.pulumi.gcp.folder.inputs.OrganizationPolicyListPolicyArgs;
import com.pulumi.gcp.folder.inputs.OrganizationPolicyListPolicyAllowArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var servicesPolicy = new OrganizationPolicy("servicesPolicy", OrganizationPolicyArgs.builder()
.folder("folders/123456789")
.constraint("serviceuser.services")
.listPolicy(OrganizationPolicyListPolicyArgs.builder()
.allow(OrganizationPolicyListPolicyAllowArgs.builder()
.all(true)
.build())
.build())
.build());
}
}
resources:
servicesPolicy:
type: gcp:folder:OrganizationPolicy
name: services_policy
properties:
folder: folders/123456789
constraint: serviceuser.services
listPolicy:
allow:
all: true
Or to deny some services, use the following instead:
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const servicesPolicy = new gcp.folder.OrganizationPolicy("services_policy", {
folder: "folders/123456789",
constraint: "serviceuser.services",
listPolicy: {
suggestedValue: "compute.googleapis.com",
deny: {
values: ["cloudresourcemanager.googleapis.com"],
},
},
});
import pulumi
import pulumi_gcp as gcp
services_policy = gcp.folder.OrganizationPolicy("services_policy",
folder="folders/123456789",
constraint="serviceuser.services",
list_policy={
"suggested_value": "compute.googleapis.com",
"deny": {
"values": ["cloudresourcemanager.googleapis.com"],
},
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/folder"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := folder.NewOrganizationPolicy(ctx, "services_policy", &folder.OrganizationPolicyArgs{
Folder: pulumi.String("folders/123456789"),
Constraint: pulumi.String("serviceuser.services"),
ListPolicy: &folder.OrganizationPolicyListPolicyArgs{
SuggestedValue: pulumi.String("compute.googleapis.com"),
Deny: &folder.OrganizationPolicyListPolicyDenyArgs{
Values: pulumi.StringArray{
pulumi.String("cloudresourcemanager.googleapis.com"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var servicesPolicy = new Gcp.Folder.OrganizationPolicy("services_policy", new()
{
Folder = "folders/123456789",
Constraint = "serviceuser.services",
ListPolicy = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyArgs
{
SuggestedValue = "compute.googleapis.com",
Deny = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyDenyArgs
{
Values = new[]
{
"cloudresourcemanager.googleapis.com",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.folder.OrganizationPolicy;
import com.pulumi.gcp.folder.OrganizationPolicyArgs;
import com.pulumi.gcp.folder.inputs.OrganizationPolicyListPolicyArgs;
import com.pulumi.gcp.folder.inputs.OrganizationPolicyListPolicyDenyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var servicesPolicy = new OrganizationPolicy("servicesPolicy", OrganizationPolicyArgs.builder()
.folder("folders/123456789")
.constraint("serviceuser.services")
.listPolicy(OrganizationPolicyListPolicyArgs.builder()
.suggestedValue("compute.googleapis.com")
.deny(OrganizationPolicyListPolicyDenyArgs.builder()
.values("cloudresourcemanager.googleapis.com")
.build())
.build())
.build());
}
}
resources:
servicesPolicy:
type: gcp:folder:OrganizationPolicy
name: services_policy
properties:
folder: folders/123456789
constraint: serviceuser.services
listPolicy:
suggestedValue: compute.googleapis.com
deny:
values:
- cloudresourcemanager.googleapis.com
To restore the default folder organization policy, use the following instead:
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const servicesPolicy = new gcp.folder.OrganizationPolicy("services_policy", {
folder: "folders/123456789",
constraint: "serviceuser.services",
restorePolicy: {
"default": true,
},
});
import pulumi
import pulumi_gcp as gcp
services_policy = gcp.folder.OrganizationPolicy("services_policy",
folder="folders/123456789",
constraint="serviceuser.services",
restore_policy={
"default": True,
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/folder"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := folder.NewOrganizationPolicy(ctx, "services_policy", &folder.OrganizationPolicyArgs{
Folder: pulumi.String("folders/123456789"),
Constraint: pulumi.String("serviceuser.services"),
RestorePolicy: &folder.OrganizationPolicyRestorePolicyArgs{
Default: pulumi.Bool(true),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var servicesPolicy = new Gcp.Folder.OrganizationPolicy("services_policy", new()
{
Folder = "folders/123456789",
Constraint = "serviceuser.services",
RestorePolicy = new Gcp.Folder.Inputs.OrganizationPolicyRestorePolicyArgs
{
Default = true,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.folder.OrganizationPolicy;
import com.pulumi.gcp.folder.OrganizationPolicyArgs;
import com.pulumi.gcp.folder.inputs.OrganizationPolicyRestorePolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var servicesPolicy = new OrganizationPolicy("servicesPolicy", OrganizationPolicyArgs.builder()
.folder("folders/123456789")
.constraint("serviceuser.services")
.restorePolicy(OrganizationPolicyRestorePolicyArgs.builder()
.default_(true)
.build())
.build());
}
}
resources:
servicesPolicy:
type: gcp:folder:OrganizationPolicy
name: services_policy
properties:
folder: folders/123456789
constraint: serviceuser.services
restorePolicy:
default: true
Create OrganizationPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrganizationPolicy(name: string, args: OrganizationPolicyArgs, opts?: CustomResourceOptions);
@overload
def OrganizationPolicy(resource_name: str,
args: OrganizationPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OrganizationPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
constraint: Optional[str] = None,
folder: Optional[str] = None,
boolean_policy: Optional[OrganizationPolicyBooleanPolicyArgs] = None,
list_policy: Optional[OrganizationPolicyListPolicyArgs] = None,
restore_policy: Optional[OrganizationPolicyRestorePolicyArgs] = None,
version: Optional[int] = None)
func NewOrganizationPolicy(ctx *Context, name string, args OrganizationPolicyArgs, opts ...ResourceOption) (*OrganizationPolicy, error)
public OrganizationPolicy(string name, OrganizationPolicyArgs args, CustomResourceOptions? opts = null)
public OrganizationPolicy(String name, OrganizationPolicyArgs args)
public OrganizationPolicy(String name, OrganizationPolicyArgs args, CustomResourceOptions options)
type: gcp:folder:OrganizationPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args OrganizationPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OrganizationPolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OrganizationPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var organizationPolicyResource = new Gcp.Folder.OrganizationPolicy("organizationPolicyResource", new()
{
Constraint = "string",
Folder = "string",
BooleanPolicy = new Gcp.Folder.Inputs.OrganizationPolicyBooleanPolicyArgs
{
Enforced = false,
},
ListPolicy = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyArgs
{
Allow = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyAllowArgs
{
All = false,
Values = new[]
{
"string",
},
},
Deny = new Gcp.Folder.Inputs.OrganizationPolicyListPolicyDenyArgs
{
All = false,
Values = new[]
{
"string",
},
},
InheritFromParent = false,
SuggestedValue = "string",
},
RestorePolicy = new Gcp.Folder.Inputs.OrganizationPolicyRestorePolicyArgs
{
Default = false,
},
Version = 0,
});
example, err := folder.NewOrganizationPolicy(ctx, "organizationPolicyResource", &folder.OrganizationPolicyArgs{
Constraint: pulumi.String("string"),
Folder: pulumi.String("string"),
BooleanPolicy: &folder.OrganizationPolicyBooleanPolicyArgs{
Enforced: pulumi.Bool(false),
},
ListPolicy: &folder.OrganizationPolicyListPolicyArgs{
Allow: &folder.OrganizationPolicyListPolicyAllowArgs{
All: pulumi.Bool(false),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
Deny: &folder.OrganizationPolicyListPolicyDenyArgs{
All: pulumi.Bool(false),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
InheritFromParent: pulumi.Bool(false),
SuggestedValue: pulumi.String("string"),
},
RestorePolicy: &folder.OrganizationPolicyRestorePolicyArgs{
Default: pulumi.Bool(false),
},
Version: pulumi.Int(0),
})
var organizationPolicyResource = new OrganizationPolicy("organizationPolicyResource", OrganizationPolicyArgs.builder()
.constraint("string")
.folder("string")
.booleanPolicy(OrganizationPolicyBooleanPolicyArgs.builder()
.enforced(false)
.build())
.listPolicy(OrganizationPolicyListPolicyArgs.builder()
.allow(OrganizationPolicyListPolicyAllowArgs.builder()
.all(false)
.values("string")
.build())
.deny(OrganizationPolicyListPolicyDenyArgs.builder()
.all(false)
.values("string")
.build())
.inheritFromParent(false)
.suggestedValue("string")
.build())
.restorePolicy(OrganizationPolicyRestorePolicyArgs.builder()
.default_(false)
.build())
.version(0)
.build());
organization_policy_resource = gcp.folder.OrganizationPolicy("organizationPolicyResource",
constraint="string",
folder="string",
boolean_policy={
"enforced": False,
},
list_policy={
"allow": {
"all": False,
"values": ["string"],
},
"deny": {
"all": False,
"values": ["string"],
},
"inheritFromParent": False,
"suggestedValue": "string",
},
restore_policy={
"default": False,
},
version=0)
const organizationPolicyResource = new gcp.folder.OrganizationPolicy("organizationPolicyResource", {
constraint: "string",
folder: "string",
booleanPolicy: {
enforced: false,
},
listPolicy: {
allow: {
all: false,
values: ["string"],
},
deny: {
all: false,
values: ["string"],
},
inheritFromParent: false,
suggestedValue: "string",
},
restorePolicy: {
"default": false,
},
version: 0,
});
type: gcp:folder:OrganizationPolicy
properties:
booleanPolicy:
enforced: false
constraint: string
folder: string
listPolicy:
allow:
all: false
values:
- string
deny:
all: false
values:
- string
inheritFromParent: false
suggestedValue: string
restorePolicy:
default: false
version: 0
OrganizationPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The OrganizationPolicy resource accepts the following input properties:
- Constraint string
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - Folder string
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- Boolean
Policy OrganizationPolicy Boolean Policy - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- List
Policy OrganizationPolicy List Policy - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- Restore
Policy OrganizationPolicy Restore Policy A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- Version int
- Version of the Policy. Default version is 0.
- Constraint string
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - Folder string
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- Boolean
Policy OrganizationPolicy Boolean Policy Args - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- List
Policy OrganizationPolicy List Policy Args - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- Restore
Policy OrganizationPolicy Restore Policy Args A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- Version int
- Version of the Policy. Default version is 0.
- constraint String
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - folder String
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- boolean
Policy OrganizationPolicy Boolean Policy - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- list
Policy OrganizationPolicy List Policy - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore
Policy OrganizationPolicy Restore Policy A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- version Integer
- Version of the Policy. Default version is 0.
- constraint string
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - folder string
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- boolean
Policy OrganizationPolicy Boolean Policy - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- list
Policy OrganizationPolicy List Policy - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore
Policy OrganizationPolicy Restore Policy A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- version number
- Version of the Policy. Default version is 0.
- constraint str
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - folder str
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- boolean_
policy OrganizationPolicy Boolean Policy Args - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- list_
policy OrganizationPolicy List Policy Args - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore_
policy OrganizationPolicy Restore Policy Args A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- version int
- Version of the Policy. Default version is 0.
- constraint String
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - folder String
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- boolean
Policy Property Map - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- list
Policy Property Map - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore
Policy Property Map A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- version Number
- Version of the Policy. Default version is 0.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrganizationPolicy resource produces the following output properties:
- Etag string
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - Id string
- The provider-assigned unique ID for this managed resource.
- Update
Time string - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- Etag string
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - Id string
- The provider-assigned unique ID for this managed resource.
- Update
Time string - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- etag String
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - id String
- The provider-assigned unique ID for this managed resource.
- update
Time String - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- etag string
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - id string
- The provider-assigned unique ID for this managed resource.
- update
Time string - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- etag str
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - id str
- The provider-assigned unique ID for this managed resource.
- update_
time str - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- etag String
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - id String
- The provider-assigned unique ID for this managed resource.
- update
Time String - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
Look up Existing OrganizationPolicy Resource
Get an existing OrganizationPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OrganizationPolicyState, opts?: CustomResourceOptions): OrganizationPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
boolean_policy: Optional[OrganizationPolicyBooleanPolicyArgs] = None,
constraint: Optional[str] = None,
etag: Optional[str] = None,
folder: Optional[str] = None,
list_policy: Optional[OrganizationPolicyListPolicyArgs] = None,
restore_policy: Optional[OrganizationPolicyRestorePolicyArgs] = None,
update_time: Optional[str] = None,
version: Optional[int] = None) -> OrganizationPolicy
func GetOrganizationPolicy(ctx *Context, name string, id IDInput, state *OrganizationPolicyState, opts ...ResourceOption) (*OrganizationPolicy, error)
public static OrganizationPolicy Get(string name, Input<string> id, OrganizationPolicyState? state, CustomResourceOptions? opts = null)
public static OrganizationPolicy get(String name, Output<String> id, OrganizationPolicyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Boolean
Policy OrganizationPolicy Boolean Policy - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- Constraint string
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - Etag string
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - Folder string
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- List
Policy OrganizationPolicy List Policy - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- Restore
Policy OrganizationPolicy Restore Policy A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- Update
Time string - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- Version int
- Version of the Policy. Default version is 0.
- Boolean
Policy OrganizationPolicy Boolean Policy Args - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- Constraint string
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - Etag string
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - Folder string
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- List
Policy OrganizationPolicy List Policy Args - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- Restore
Policy OrganizationPolicy Restore Policy Args A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- Update
Time string - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- Version int
- Version of the Policy. Default version is 0.
- boolean
Policy OrganizationPolicy Boolean Policy - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- constraint String
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - etag String
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - folder String
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- list
Policy OrganizationPolicy List Policy - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore
Policy OrganizationPolicy Restore Policy A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- update
Time String - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- version Integer
- Version of the Policy. Default version is 0.
- boolean
Policy OrganizationPolicy Boolean Policy - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- constraint string
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - etag string
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - folder string
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- list
Policy OrganizationPolicy List Policy - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore
Policy OrganizationPolicy Restore Policy A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- update
Time string - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- version number
- Version of the Policy. Default version is 0.
- boolean_
policy OrganizationPolicy Boolean Policy Args - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- constraint str
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - etag str
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - folder str
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- list_
policy OrganizationPolicy List Policy Args - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore_
policy OrganizationPolicy Restore Policy Args A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- update_
time str - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- version int
- Version of the Policy. Default version is 0.
- boolean
Policy Property Map - A boolean policy is a constraint that is either enforced or not. Structure is documented below.
- constraint String
- The name of the Constraint the Policy is configuring, for example,
serviceuser.services
. Check out the complete list of available constraints. - etag String
- (Computed) The etag of the organization policy.
etag
is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. - folder String
- The resource name of the folder to set the policy for. Its format is folders/{folder_id}.
- list
Policy Property Map - A policy that can define specific values that are allowed or denied for the given constraint. It can also be used to allow or deny all values. Structure is documented below.
- restore
Policy Property Map A restore policy is a constraint to restore the default policy. Structure is documented below.
Note: If none of [
boolean_policy
,list_policy
,restore_policy
] are defined the policy for a given constraint will effectively be unset. This is represented in the UI as the constraint being 'Inherited'.- update
Time String - (Computed) The timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds, representing when the variable was last updated. Example: "2016-10-09T12:33:37.578138407Z".
- version Number
- Version of the Policy. Default version is 0.
Supporting Types
OrganizationPolicyBooleanPolicy, OrganizationPolicyBooleanPolicyArgs
- Enforced bool
- If true, then the Policy is enforced. If false, then any configuration is acceptable.
- Enforced bool
- If true, then the Policy is enforced. If false, then any configuration is acceptable.
- enforced Boolean
- If true, then the Policy is enforced. If false, then any configuration is acceptable.
- enforced boolean
- If true, then the Policy is enforced. If false, then any configuration is acceptable.
- enforced bool
- If true, then the Policy is enforced. If false, then any configuration is acceptable.
- enforced Boolean
- If true, then the Policy is enforced. If false, then any configuration is acceptable.
OrganizationPolicyListPolicy, OrganizationPolicyListPolicyArgs
- Allow
Organization
Policy List Policy Allow - or
deny
- (Optional) One or the other must be set. - Deny
Organization
Policy List Policy Deny - One or the other must be set.
- Inherit
From boolParent If set to true, the values from the effective Policy of the parent resource are inherited, meaning the values set in this Policy are added to the values inherited up the hierarchy.
The
allow
ordeny
blocks support:- Suggested
Value string - The Google Cloud Console will try to default to a configuration that matches the value specified in this field.
- Allow
Organization
Policy List Policy Allow - or
deny
- (Optional) One or the other must be set. - Deny
Organization
Policy List Policy Deny - One or the other must be set.
- Inherit
From boolParent If set to true, the values from the effective Policy of the parent resource are inherited, meaning the values set in this Policy are added to the values inherited up the hierarchy.
The
allow
ordeny
blocks support:- Suggested
Value string - The Google Cloud Console will try to default to a configuration that matches the value specified in this field.
- allow
Organization
Policy List Policy Allow - or
deny
- (Optional) One or the other must be set. - deny
Organization
Policy List Policy Deny - One or the other must be set.
- inherit
From BooleanParent If set to true, the values from the effective Policy of the parent resource are inherited, meaning the values set in this Policy are added to the values inherited up the hierarchy.
The
allow
ordeny
blocks support:- suggested
Value String - The Google Cloud Console will try to default to a configuration that matches the value specified in this field.
- allow
Organization
Policy List Policy Allow - or
deny
- (Optional) One or the other must be set. - deny
Organization
Policy List Policy Deny - One or the other must be set.
- inherit
From booleanParent If set to true, the values from the effective Policy of the parent resource are inherited, meaning the values set in this Policy are added to the values inherited up the hierarchy.
The
allow
ordeny
blocks support:- suggested
Value string - The Google Cloud Console will try to default to a configuration that matches the value specified in this field.
- allow
Organization
Policy List Policy Allow - or
deny
- (Optional) One or the other must be set. - deny
Organization
Policy List Policy Deny - One or the other must be set.
- inherit_
from_ boolparent If set to true, the values from the effective Policy of the parent resource are inherited, meaning the values set in this Policy are added to the values inherited up the hierarchy.
The
allow
ordeny
blocks support:- suggested_
value str - The Google Cloud Console will try to default to a configuration that matches the value specified in this field.
- allow Property Map
- or
deny
- (Optional) One or the other must be set. - deny Property Map
- One or the other must be set.
- inherit
From BooleanParent If set to true, the values from the effective Policy of the parent resource are inherited, meaning the values set in this Policy are added to the values inherited up the hierarchy.
The
allow
ordeny
blocks support:- suggested
Value String - The Google Cloud Console will try to default to a configuration that matches the value specified in this field.
OrganizationPolicyListPolicyAllow, OrganizationPolicyListPolicyAllowArgs
OrganizationPolicyListPolicyDeny, OrganizationPolicyListPolicyDenyArgs
OrganizationPolicyRestorePolicy, OrganizationPolicyRestorePolicyArgs
- Default bool
- May only be set to true. If set, then the default Policy is restored.
- Default bool
- May only be set to true. If set, then the default Policy is restored.
- default_ Boolean
- May only be set to true. If set, then the default Policy is restored.
- default boolean
- May only be set to true. If set, then the default Policy is restored.
- default bool
- May only be set to true. If set, then the default Policy is restored.
- default Boolean
- May only be set to true. If set, then the default Policy is restored.
Import
Folder organization policies can be imported using any of the follow formats:
folders/{{folder_id}}/constraints/serviceuser.services
{{folder_id}}/serviceuser.services
When using the pulumi import
command, folder organization policies can be imported using one of the formats above. For example:
$ pulumi import gcp:folder/organizationPolicy:OrganizationPolicy * `google_folder_organization_policy.default folders/* ``{{folder_id}}/constraints/serviceuser.services`
$ pulumi import gcp:folder/organizationPolicy:OrganizationPolicy * `* `google_folder_organization_policy.default {{folder_id}}/``serviceuser.services
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.