1. Packages
  2. Athenz Provider
  3. API Docs
  4. Policy
athenz 1.0.45 published on Tuesday, Apr 15, 2025 by athenz

athenz.Policy

Explore with Pulumi AI

athenz.Policy provides an Athenz policy resource.

Example Usage

IMPORTANT NOTE: please do NOT use json syntax but only hcl syntax

import * as pulumi from "@pulumi/pulumi";
import * as athenz from "@pulumi/athenz";

const fooPolicy = new athenz.Policy("fooPolicy", {
    assertions: [
        {
            action: "some_action",
            effect: "ALLOW",
            resource: "some_domain:some_resource",
            role: "some_role_name",
        },
        {
            action: "SOME_ACTION",
            caseSensitive: true,
            effect: "ALLOW",
            resource: "some_domain:some_resource",
            role: "some_role_name",
        },
    ],
    auditRef: "create policy",
    domain: "some_domain",
});
Copy
import pulumi
import pulumi_athenz as athenz

foo_policy = athenz.Policy("fooPolicy",
    assertions=[
        {
            "action": "some_action",
            "effect": "ALLOW",
            "resource": "some_domain:some_resource",
            "role": "some_role_name",
        },
        {
            "action": "SOME_ACTION",
            "case_sensitive": True,
            "effect": "ALLOW",
            "resource": "some_domain:some_resource",
            "role": "some_role_name",
        },
    ],
    audit_ref="create policy",
    domain="some_domain")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/athenz/athenz"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := athenz.NewPolicy(ctx, "fooPolicy", &athenz.PolicyArgs{
			Assertions: athenz.PolicyAssertionArray{
				&athenz.PolicyAssertionArgs{
					Action:   pulumi.String("some_action"),
					Effect:   pulumi.String("ALLOW"),
					Resource: pulumi.String("some_domain:some_resource"),
					Role:     pulumi.String("some_role_name"),
				},
				&athenz.PolicyAssertionArgs{
					Action:        pulumi.String("SOME_ACTION"),
					CaseSensitive: pulumi.Bool(true),
					Effect:        pulumi.String("ALLOW"),
					Resource:      pulumi.String("some_domain:some_resource"),
					Role:          pulumi.String("some_role_name"),
				},
			},
			AuditRef: pulumi.String("create policy"),
			Domain:   pulumi.String("some_domain"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Athenz = Pulumi.Athenz;

return await Deployment.RunAsync(() => 
{
    var fooPolicy = new Athenz.Policy("fooPolicy", new()
    {
        Assertions = new[]
        {
            new Athenz.Inputs.PolicyAssertionArgs
            {
                Action = "some_action",
                Effect = "ALLOW",
                Resource = "some_domain:some_resource",
                Role = "some_role_name",
            },
            new Athenz.Inputs.PolicyAssertionArgs
            {
                Action = "SOME_ACTION",
                CaseSensitive = true,
                Effect = "ALLOW",
                Resource = "some_domain:some_resource",
                Role = "some_role_name",
            },
        },
        AuditRef = "create policy",
        Domain = "some_domain",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.athenz.Policy;
import com.pulumi.athenz.PolicyArgs;
import com.pulumi.athenz.inputs.PolicyAssertionArgs;
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 fooPolicy = new Policy("fooPolicy", PolicyArgs.builder()
            .assertions(            
                PolicyAssertionArgs.builder()
                    .action("some_action")
                    .effect("ALLOW")
                    .resource("some_domain:some_resource")
                    .role("some_role_name")
                    .build(),
                PolicyAssertionArgs.builder()
                    .action("SOME_ACTION")
                    .caseSensitive(true)
                    .effect("ALLOW")
                    .resource("some_domain:some_resource")
                    .role("some_role_name")
                    .build())
            .auditRef("create policy")
            .domain("some_domain")
            .build());

    }
}
Copy
resources:
  fooPolicy:
    type: athenz:Policy
    properties:
      assertions:
        - action: some_action
          effect: ALLOW
          resource: some_domain:some_resource
          role: some_role_name
        - action: SOME_ACTION
          caseSensitive: true
          effect: ALLOW
          resource: some_domain:some_resource
          role: some_role_name
      auditRef: create policy
      domain: some_domain
Copy

Create Policy Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Policy(name: string, args: PolicyArgs, opts?: CustomResourceOptions);
@overload
def Policy(resource_name: str,
           args: PolicyArgs,
           opts: Optional[ResourceOptions] = None)

@overload
def Policy(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           domain: Optional[str] = None,
           assertions: Optional[Sequence[PolicyAssertionArgs]] = None,
           audit_ref: Optional[str] = None,
           name: Optional[str] = None,
           policy_id: Optional[str] = None,
           tags: Optional[Mapping[str, str]] = None)
func NewPolicy(ctx *Context, name string, args PolicyArgs, opts ...ResourceOption) (*Policy, error)
public Policy(string name, PolicyArgs args, CustomResourceOptions? opts = null)
public Policy(String name, PolicyArgs args)
public Policy(String name, PolicyArgs args, CustomResourceOptions options)
type: athenz:Policy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PolicyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PolicyArgs
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 policyResource = new Athenz.Policy("policyResource", new()
{
    Domain = "string",
    Assertions = new[]
    {
        new Athenz.Inputs.PolicyAssertionArgs
        {
            Action = "string",
            Effect = "string",
            Resource = "string",
            Role = "string",
            CaseSensitive = false,
            Conditions = new[]
            {
                new Athenz.Inputs.PolicyAssertionConditionArgs
                {
                    Enforcementstate = new Athenz.Inputs.PolicyAssertionConditionEnforcementstateArgs
                    {
                        Value = "string",
                        Operator = 0,
                    },
                    Instances = new Athenz.Inputs.PolicyAssertionConditionInstancesArgs
                    {
                        Value = "string",
                        Operator = 0,
                    },
                    Scopeall = new Athenz.Inputs.PolicyAssertionConditionScopeallArgs
                    {
                        Value = "string",
                        Operator = 0,
                    },
                    Scopeaws = new Athenz.Inputs.PolicyAssertionConditionScopeawsArgs
                    {
                        Value = "string",
                        Operator = 0,
                    },
                    Scopeonprem = new Athenz.Inputs.PolicyAssertionConditionScopeonpremArgs
                    {
                        Value = "string",
                        Operator = 0,
                    },
                    Id = 0,
                },
            },
            Id = 0,
        },
    },
    AuditRef = "string",
    Name = "string",
    PolicyId = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := athenz.NewPolicy(ctx, "policyResource", &athenz.PolicyArgs{
Domain: pulumi.String("string"),
Assertions: .PolicyAssertionArray{
&.PolicyAssertionArgs{
Action: pulumi.String("string"),
Effect: pulumi.String("string"),
Resource: pulumi.String("string"),
Role: pulumi.String("string"),
CaseSensitive: pulumi.Bool(false),
Conditions: .PolicyAssertionConditionArray{
&.PolicyAssertionConditionArgs{
Enforcementstate: &.PolicyAssertionConditionEnforcementstateArgs{
Value: pulumi.String("string"),
Operator: pulumi.Float64(0),
},
Instances: &.PolicyAssertionConditionInstancesArgs{
Value: pulumi.String("string"),
Operator: pulumi.Float64(0),
},
Scopeall: &.PolicyAssertionConditionScopeallArgs{
Value: pulumi.String("string"),
Operator: pulumi.Float64(0),
},
Scopeaws: &.PolicyAssertionConditionScopeawsArgs{
Value: pulumi.String("string"),
Operator: pulumi.Float64(0),
},
Scopeonprem: &.PolicyAssertionConditionScopeonpremArgs{
Value: pulumi.String("string"),
Operator: pulumi.Float64(0),
},
Id: pulumi.Float64(0),
},
},
Id: pulumi.Float64(0),
},
},
AuditRef: pulumi.String("string"),
Name: pulumi.String("string"),
PolicyId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
Copy
var policyResource = new Policy("policyResource", PolicyArgs.builder()
    .domain("string")
    .assertions(PolicyAssertionArgs.builder()
        .action("string")
        .effect("string")
        .resource("string")
        .role("string")
        .caseSensitive(false)
        .conditions(PolicyAssertionConditionArgs.builder()
            .enforcementstate(PolicyAssertionConditionEnforcementstateArgs.builder()
                .value("string")
                .operator(0)
                .build())
            .instances(PolicyAssertionConditionInstancesArgs.builder()
                .value("string")
                .operator(0)
                .build())
            .scopeall(PolicyAssertionConditionScopeallArgs.builder()
                .value("string")
                .operator(0)
                .build())
            .scopeaws(PolicyAssertionConditionScopeawsArgs.builder()
                .value("string")
                .operator(0)
                .build())
            .scopeonprem(PolicyAssertionConditionScopeonpremArgs.builder()
                .value("string")
                .operator(0)
                .build())
            .id(0)
            .build())
        .id(0)
        .build())
    .auditRef("string")
    .name("string")
    .policyId("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
policy_resource = athenz.Policy("policyResource",
    domain="string",
    assertions=[{
        "action": "string",
        "effect": "string",
        "resource": "string",
        "role": "string",
        "case_sensitive": False,
        "conditions": [{
            "enforcementstate": {
                "value": "string",
                "operator": 0,
            },
            "instances": {
                "value": "string",
                "operator": 0,
            },
            "scopeall": {
                "value": "string",
                "operator": 0,
            },
            "scopeaws": {
                "value": "string",
                "operator": 0,
            },
            "scopeonprem": {
                "value": "string",
                "operator": 0,
            },
            "id": 0,
        }],
        "id": 0,
    }],
    audit_ref="string",
    name="string",
    policy_id="string",
    tags={
        "string": "string",
    })
Copy
const policyResource = new athenz.Policy("policyResource", {
    domain: "string",
    assertions: [{
        action: "string",
        effect: "string",
        resource: "string",
        role: "string",
        caseSensitive: false,
        conditions: [{
            enforcementstate: {
                value: "string",
                operator: 0,
            },
            instances: {
                value: "string",
                operator: 0,
            },
            scopeall: {
                value: "string",
                operator: 0,
            },
            scopeaws: {
                value: "string",
                operator: 0,
            },
            scopeonprem: {
                value: "string",
                operator: 0,
            },
            id: 0,
        }],
        id: 0,
    }],
    auditRef: "string",
    name: "string",
    policyId: "string",
    tags: {
        string: "string",
    },
});
Copy
type: athenz:Policy
properties:
    assertions:
        - action: string
          caseSensitive: false
          conditions:
            - enforcementstate:
                operator: 0
                value: string
              id: 0
              instances:
                operator: 0
                value: string
              scopeall:
                operator: 0
                value: string
              scopeaws:
                operator: 0
                value: string
              scopeonprem:
                operator: 0
                value: string
          effect: string
          id: 0
          resource: string
          role: string
    auditRef: string
    domain: string
    name: string
    policyId: string
    tags:
        string: string
Copy

Policy Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Policy resource accepts the following input properties:

Domain This property is required. string
Name of the domain that policy belongs to
Assertions List<PolicyAssertion>
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
AuditRef string
Name string
Name of the policy
PolicyId string
The ID of this resource.
Tags Dictionary<string, string>
Domain This property is required. string
Name of the domain that policy belongs to
Assertions []PolicyAssertionArgs
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
AuditRef string
Name string
Name of the policy
PolicyId string
The ID of this resource.
Tags map[string]string
domain This property is required. String
Name of the domain that policy belongs to
assertions List<PolicyAssertion>
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
auditRef String
name String
Name of the policy
policyId String
The ID of this resource.
tags Map<String,String>
domain This property is required. string
Name of the domain that policy belongs to
assertions PolicyAssertion[]
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
auditRef string
name string
Name of the policy
policyId string
The ID of this resource.
tags {[key: string]: string}
domain This property is required. str
Name of the domain that policy belongs to
assertions Sequence[PolicyAssertionArgs]
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
audit_ref str
name str
Name of the policy
policy_id str
The ID of this resource.
tags Mapping[str, str]
domain This property is required. String
Name of the domain that policy belongs to
assertions List<Property Map>
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
auditRef String
name String
Name of the policy
policyId String
The ID of this resource.
tags Map<String>

Outputs

All input properties are implicitly available as output properties. Additionally, the Policy resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Policy Resource

Get an existing Policy 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?: PolicyState, opts?: CustomResourceOptions): Policy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        assertions: Optional[Sequence[PolicyAssertionArgs]] = None,
        audit_ref: Optional[str] = None,
        domain: Optional[str] = None,
        name: Optional[str] = None,
        policy_id: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None) -> Policy
func GetPolicy(ctx *Context, name string, id IDInput, state *PolicyState, opts ...ResourceOption) (*Policy, error)
public static Policy Get(string name, Input<string> id, PolicyState? state, CustomResourceOptions? opts = null)
public static Policy get(String name, Output<String> id, PolicyState state, CustomResourceOptions options)
resources:  _:    type: athenz:Policy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Assertions List<PolicyAssertion>
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
AuditRef string
Domain string
Name of the domain that policy belongs to
Name string
Name of the policy
PolicyId string
The ID of this resource.
Tags Dictionary<string, string>
Assertions []PolicyAssertionArgs
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
AuditRef string
Domain string
Name of the domain that policy belongs to
Name string
Name of the policy
PolicyId string
The ID of this resource.
Tags map[string]string
assertions List<PolicyAssertion>
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
auditRef String
domain String
Name of the domain that policy belongs to
name String
Name of the policy
policyId String
The ID of this resource.
tags Map<String,String>
assertions PolicyAssertion[]
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
auditRef string
domain string
Name of the domain that policy belongs to
name string
Name of the policy
policyId string
The ID of this resource.
tags {[key: string]: string}
assertions Sequence[PolicyAssertionArgs]
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
audit_ref str
domain str
Name of the domain that policy belongs to
name str
Name of the policy
policy_id str
The ID of this resource.
tags Mapping[str, str]
assertions List<Property Map>
A set of assertions that govern usage of resources. where \n\n is \n\n \n\n to \n\n on \n\n.
auditRef String
domain String
Name of the domain that policy belongs to
name String
Name of the policy
policyId String
The ID of this resource.
tags Map<String>

Supporting Types

PolicyAssertion
, PolicyAssertionArgs

Action This property is required. string
  • The action is the domain administrator defined action available for the resource (e.g. read, write, delete).
Effect This property is required. string
  • The value effect must be either ALLOW or DENY.
Resource This property is required. string
  • The resource is the YRN of the resource this assertion applies to. MUST provide fully qualified name: <domain name>:<resource name>
Role This property is required. string
  • The name of the role this assertion applies to. MUST be the role name only (without the prefix <domain name>:role)
CaseSensitive bool
If true, action and resource will be case-sensitive.
Conditions List<PolicyAssertionCondition>
Id double
The ID of this resource.
Action This property is required. string
  • The action is the domain administrator defined action available for the resource (e.g. read, write, delete).
Effect This property is required. string
  • The value effect must be either ALLOW or DENY.
Resource This property is required. string
  • The resource is the YRN of the resource this assertion applies to. MUST provide fully qualified name: <domain name>:<resource name>
Role This property is required. string
  • The name of the role this assertion applies to. MUST be the role name only (without the prefix <domain name>:role)
CaseSensitive bool
If true, action and resource will be case-sensitive.
Conditions []PolicyAssertionCondition
Id float64
The ID of this resource.
action This property is required. String
  • The action is the domain administrator defined action available for the resource (e.g. read, write, delete).
effect This property is required. String
  • The value effect must be either ALLOW or DENY.
resource This property is required. String
  • The resource is the YRN of the resource this assertion applies to. MUST provide fully qualified name: <domain name>:<resource name>
role This property is required. String
  • The name of the role this assertion applies to. MUST be the role name only (without the prefix <domain name>:role)
caseSensitive Boolean
If true, action and resource will be case-sensitive.
conditions List<PolicyAssertionCondition>
id Double
The ID of this resource.
action This property is required. string
  • The action is the domain administrator defined action available for the resource (e.g. read, write, delete).
effect This property is required. string
  • The value effect must be either ALLOW or DENY.
resource This property is required. string
  • The resource is the YRN of the resource this assertion applies to. MUST provide fully qualified name: <domain name>:<resource name>
role This property is required. string
  • The name of the role this assertion applies to. MUST be the role name only (without the prefix <domain name>:role)
caseSensitive boolean
If true, action and resource will be case-sensitive.
conditions PolicyAssertionCondition[]
id number
The ID of this resource.
action This property is required. str
  • The action is the domain administrator defined action available for the resource (e.g. read, write, delete).
effect This property is required. str
  • The value effect must be either ALLOW or DENY.
resource This property is required. str
  • The resource is the YRN of the resource this assertion applies to. MUST provide fully qualified name: <domain name>:<resource name>
role This property is required. str
  • The name of the role this assertion applies to. MUST be the role name only (without the prefix <domain name>:role)
case_sensitive bool
If true, action and resource will be case-sensitive.
conditions Sequence[PolicyAssertionCondition]
id float
The ID of this resource.
action This property is required. String
  • The action is the domain administrator defined action available for the resource (e.g. read, write, delete).
effect This property is required. String
  • The value effect must be either ALLOW or DENY.
resource This property is required. String
  • The resource is the YRN of the resource this assertion applies to. MUST provide fully qualified name: <domain name>:<resource name>
role This property is required. String
  • The name of the role this assertion applies to. MUST be the role name only (without the prefix <domain name>:role)
caseSensitive Boolean
If true, action and resource will be case-sensitive.
conditions List<Property Map>
id Number
The ID of this resource.

PolicyAssertionCondition
, PolicyAssertionConditionArgs

Enforcementstate This property is required. PolicyAssertionConditionEnforcementstate
Instances This property is required. PolicyAssertionConditionInstances
Scopeall This property is required. PolicyAssertionConditionScopeall
Scopeaws This property is required. PolicyAssertionConditionScopeaws
Scopeonprem This property is required. PolicyAssertionConditionScopeonprem
Id double
The ID of this resource.
Enforcementstate This property is required. PolicyAssertionConditionEnforcementstate
Instances This property is required. PolicyAssertionConditionInstances
Scopeall This property is required. PolicyAssertionConditionScopeall
Scopeaws This property is required. PolicyAssertionConditionScopeaws
Scopeonprem This property is required. PolicyAssertionConditionScopeonprem
Id float64
The ID of this resource.
enforcementstate This property is required. PolicyAssertionConditionEnforcementstate
instances This property is required. PolicyAssertionConditionInstances
scopeall This property is required. PolicyAssertionConditionScopeall
scopeaws This property is required. PolicyAssertionConditionScopeaws
scopeonprem This property is required. PolicyAssertionConditionScopeonprem
id Double
The ID of this resource.
enforcementstate This property is required. PolicyAssertionConditionEnforcementstate
instances This property is required. PolicyAssertionConditionInstances
scopeall This property is required. PolicyAssertionConditionScopeall
scopeaws This property is required. PolicyAssertionConditionScopeaws
scopeonprem This property is required. PolicyAssertionConditionScopeonprem
id number
The ID of this resource.
enforcementstate This property is required. PolicyAssertionConditionEnforcementstate
instances This property is required. PolicyAssertionConditionInstances
scopeall This property is required. PolicyAssertionConditionScopeall
scopeaws This property is required. PolicyAssertionConditionScopeaws
scopeonprem This property is required. PolicyAssertionConditionScopeonprem
id float
The ID of this resource.
enforcementstate This property is required. Property Map
instances This property is required. Property Map
scopeall This property is required. Property Map
scopeaws This property is required. Property Map
scopeonprem This property is required. Property Map
id Number
The ID of this resource.

PolicyAssertionConditionEnforcementstate
, PolicyAssertionConditionEnforcementstateArgs

Value This property is required. string
Operator double
Value This property is required. string
Operator float64
value This property is required. String
operator Double
value This property is required. string
operator number
value This property is required. str
operator float
value This property is required. String
operator Number

PolicyAssertionConditionInstances
, PolicyAssertionConditionInstancesArgs

Value This property is required. string
Operator double
Value This property is required. string
Operator float64
value This property is required. String
operator Double
value This property is required. string
operator number
value This property is required. str
operator float
value This property is required. String
operator Number

PolicyAssertionConditionScopeall
, PolicyAssertionConditionScopeallArgs

Value This property is required. string
Operator double
Value This property is required. string
Operator float64
value This property is required. String
operator Double
value This property is required. string
operator number
value This property is required. str
operator float
value This property is required. String
operator Number

PolicyAssertionConditionScopeaws
, PolicyAssertionConditionScopeawsArgs

Value This property is required. string
Operator double
Value This property is required. string
Operator float64
value This property is required. String
operator Double
value This property is required. string
operator number
value This property is required. str
operator float
value This property is required. String
operator Number

PolicyAssertionConditionScopeonprem
, PolicyAssertionConditionScopeonpremArgs

Value This property is required. string
Operator double
Value This property is required. string
Operator float64
value This property is required. String
operator Double
value This property is required. string
operator number
value This property is required. str
operator float
value This property is required. String
operator Number

Package Details

Repository
athenz athenz/terraform-provider-athenz
License
Notes
This Pulumi package is based on the athenz Terraform Provider.