Viewing docs for Harness v0.14.3
published on Thursday, Jun 18, 2026 by Pulumi
published on Thursday, Jun 18, 2026 by Pulumi
Viewing docs for Harness v0.14.3
published on Thursday, Jun 18, 2026 by Pulumi
published on Thursday, Jun 18, 2026 by Pulumi
Data source for retrieving a Harness Chaos Security Governance Condition (V3 / REST API).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@pulumi/harness";
// Look up a security governance condition (V3) by identity
const byIdentity = harness.chaos.getSecurityGovernanceConditionV3({
orgId: orgId,
projectId: projectId,
identity: "<condition_id>",
});
// Look up a security governance condition (V3) by name
const byName = harness.chaos.getSecurityGovernanceConditionV3({
orgId: orgId,
projectId: projectId,
name: "k8s-security-condition",
});
export const securityGovernanceConditionV3ByIdentity = byIdentity;
export const securityGovernanceConditionV3ByName = byName;
import pulumi
import pulumi_harness as harness
# Look up a security governance condition (V3) by identity
by_identity = harness.chaos.get_security_governance_condition_v3(org_id=org_id,
project_id=project_id,
identity="<condition_id>")
# Look up a security governance condition (V3) by name
by_name = harness.chaos.get_security_governance_condition_v3(org_id=org_id,
project_id=project_id,
name="k8s-security-condition")
pulumi.export("securityGovernanceConditionV3ByIdentity", by_identity)
pulumi.export("securityGovernanceConditionV3ByName", by_name)
package main
import (
"github.com/pulumi/pulumi-harness/sdk/go/harness/chaos"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Look up a security governance condition (V3) by identity
byIdentity, err := chaos.LookupSecurityGovernanceConditionV3(ctx, &chaos.LookupSecurityGovernanceConditionV3Args{
OrgId: orgId,
ProjectId: projectId,
Identity: pulumi.StringRef("<condition_id>"),
}, nil)
if err != nil {
return err
}
// Look up a security governance condition (V3) by name
byName, err := chaos.LookupSecurityGovernanceConditionV3(ctx, &chaos.LookupSecurityGovernanceConditionV3Args{
OrgId: orgId,
ProjectId: projectId,
Name: pulumi.StringRef("k8s-security-condition"),
}, nil)
if err != nil {
return err
}
ctx.Export("securityGovernanceConditionV3ByIdentity", byIdentity)
ctx.Export("securityGovernanceConditionV3ByName", byName)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Harness = Pulumi.Harness;
return await Deployment.RunAsync(() =>
{
// Look up a security governance condition (V3) by identity
var byIdentity = Harness.Chaos.GetSecurityGovernanceConditionV3.Invoke(new()
{
OrgId = orgId,
ProjectId = projectId,
Identity = "<condition_id>",
});
// Look up a security governance condition (V3) by name
var byName = Harness.Chaos.GetSecurityGovernanceConditionV3.Invoke(new()
{
OrgId = orgId,
ProjectId = projectId,
Name = "k8s-security-condition",
});
return new Dictionary<string, object?>
{
["securityGovernanceConditionV3ByIdentity"] = byIdentity,
["securityGovernanceConditionV3ByName"] = byName,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.chaos.ChaosFunctions;
import com.pulumi.harness.chaos.inputs.GetSecurityGovernanceConditionV3Args;
import java.util.ArrayList;
import java.util.Arrays;
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) {
// Look up a security governance condition (V3) by identity
final var byIdentity = ChaosFunctions.getSecurityGovernanceConditionV3(GetSecurityGovernanceConditionV3Args.builder()
.orgId(orgId)
.projectId(projectId)
.identity("<condition_id>")
.build());
// Look up a security governance condition (V3) by name
final var byName = ChaosFunctions.getSecurityGovernanceConditionV3(GetSecurityGovernanceConditionV3Args.builder()
.orgId(orgId)
.projectId(projectId)
.name("k8s-security-condition")
.build());
ctx.export("securityGovernanceConditionV3ByIdentity", byIdentity);
ctx.export("securityGovernanceConditionV3ByName", byName);
}
}
variables:
# Look up a security governance condition (V3) by identity
byIdentity:
fn::invoke:
function: harness:chaos:getSecurityGovernanceConditionV3
arguments:
orgId: ${orgId}
projectId: ${projectId}
identity: <condition_id>
# Look up a security governance condition (V3) by name
byName:
fn::invoke:
function: harness:chaos:getSecurityGovernanceConditionV3
arguments:
orgId: ${orgId}
projectId: ${projectId}
name: k8s-security-condition
outputs:
securityGovernanceConditionV3ByIdentity: ${byIdentity}
securityGovernanceConditionV3ByName: ${byName}
pulumi {
required_providers {
harness = {
source = "pulumi/harness"
}
}
}
data "harness_chaos_getsecuritygovernanceconditionv3" "byIdentity" {
org_id = orgId
project_id = projectId
identity = "<condition_id>"
}
data "harness_chaos_getsecuritygovernanceconditionv3" "byName" {
org_id = orgId
project_id = projectId
name = "k8s-security-condition"
}
# Look up a security governance condition (V3) by identity
# Look up a security governance condition (V3) by name
output "securityGovernanceConditionV3ByIdentity" {
value = data.harness_chaos_getsecuritygovernanceconditionv3.byIdentity
}
output "securityGovernanceConditionV3ByName" {
value = data.harness_chaos_getsecuritygovernanceconditionv3.byName
}
Using getSecurityGovernanceConditionV3
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSecurityGovernanceConditionV3(args: GetSecurityGovernanceConditionV3Args, opts?: InvokeOptions): Promise<GetSecurityGovernanceConditionV3Result>
function getSecurityGovernanceConditionV3Output(args: GetSecurityGovernanceConditionV3OutputArgs, opts?: InvokeOptions): Output<GetSecurityGovernanceConditionV3Result>def get_security_governance_condition_v3(identity: Optional[str] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
project_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSecurityGovernanceConditionV3Result
def get_security_governance_condition_v3_output(identity: pulumi.Input[Optional[str]] = None,
name: pulumi.Input[Optional[str]] = None,
org_id: pulumi.Input[Optional[str]] = None,
project_id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSecurityGovernanceConditionV3Result]func LookupSecurityGovernanceConditionV3(ctx *Context, args *LookupSecurityGovernanceConditionV3Args, opts ...InvokeOption) (*LookupSecurityGovernanceConditionV3Result, error)
func LookupSecurityGovernanceConditionV3Output(ctx *Context, args *LookupSecurityGovernanceConditionV3OutputArgs, opts ...InvokeOption) LookupSecurityGovernanceConditionV3ResultOutput> Note: This function is named LookupSecurityGovernanceConditionV3 in the Go SDK.
public static class GetSecurityGovernanceConditionV3
{
public static Task<GetSecurityGovernanceConditionV3Result> InvokeAsync(GetSecurityGovernanceConditionV3Args args, InvokeOptions? opts = null)
public static Output<GetSecurityGovernanceConditionV3Result> Invoke(GetSecurityGovernanceConditionV3InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSecurityGovernanceConditionV3Result> getSecurityGovernanceConditionV3(GetSecurityGovernanceConditionV3Args args, InvokeOptions options)
public static Output<GetSecurityGovernanceConditionV3Result> getSecurityGovernanceConditionV3(GetSecurityGovernanceConditionV3Args args, InvokeOptions options)
fn::invoke:
function: harness:chaos/getSecurityGovernanceConditionV3:getSecurityGovernanceConditionV3
arguments:
# arguments dictionarydata "harness_chaos_getsecuritygovernanceconditionv3" "name" {
# arguments
}The following arguments are supported:
- Org
Id string - The organization ID of the security governance condition
- Project
Id string - The project ID of the security governance condition
- Identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - Name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
- Org
Id string - The organization ID of the security governance condition
- Project
Id string - The project ID of the security governance condition
- Identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - Name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
- org_
id string - The organization ID of the security governance condition
- project_
id string - The project ID of the security governance condition
- identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
- org
Id String - The organization ID of the security governance condition
- project
Id String - The project ID of the security governance condition
- identity String
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - name String
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
- org
Id string - The organization ID of the security governance condition
- project
Id string - The project ID of the security governance condition
- identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
- org_
id str - The organization ID of the security governance condition
- project_
id str - The project ID of the security governance condition
- identity str
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - name str
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
- org
Id String - The organization ID of the security governance condition
- project
Id String - The project ID of the security governance condition
- identity String
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided. - name String
- The name of the security governance condition. Exactly one of
identityornamemust be provided.
getSecurityGovernanceConditionV3 Result
The following output properties are available:
- Description string
- Description of the security governance condition
- Fault
Specs List<GetSecurity Governance Condition V3Fault Spec> - Specification for faults to be included in the condition
- Id string
- The provider-assigned unique ID for this managed resource.
- Infra
Type string - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- K8s
Specs List<GetSecurity Governance Condition V3K8s Spec> - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- Machine
Specs List<GetSecurity Governance Condition V3Machine Spec> - Machine specific configuration (required when infra*type is Linux or Windows)
- Name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - Org
Id string - The organization ID of the security governance condition
- Project
Id string - The project ID of the security governance condition
- List<string>
- Tags for the security governance condition
- Identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
- Description string
- Description of the security governance condition
- Fault
Specs []GetSecurity Governance Condition V3Fault Spec - Specification for faults to be included in the condition
- Id string
- The provider-assigned unique ID for this managed resource.
- Infra
Type string - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- K8s
Specs []GetSecurity Governance Condition V3K8s Spec - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- Machine
Specs []GetSecurity Governance Condition V3Machine Spec - Machine specific configuration (required when infra*type is Linux or Windows)
- Name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - Org
Id string - The organization ID of the security governance condition
- Project
Id string - The project ID of the security governance condition
- []string
- Tags for the security governance condition
- Identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
- description string
- Description of the security governance condition
- fault_
specs list(object) - Specification for faults to be included in the condition
- id string
- The provider-assigned unique ID for this managed resource.
- infra_
type string - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- k8s_
specs list(object) - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- machine_
specs list(object) - Machine specific configuration (required when infra*type is Linux or Windows)
- name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - org_
id string - The organization ID of the security governance condition
- project_
id string - The project ID of the security governance condition
- list(string)
- Tags for the security governance condition
- identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
- description String
- Description of the security governance condition
- fault
Specs List<GetSecurity Governance Condition V3Fault Spec> - Specification for faults to be included in the condition
- id String
- The provider-assigned unique ID for this managed resource.
- infra
Type String - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- k8s
Specs List<GetSecurity Governance Condition V3K8s Spec> - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- machine
Specs List<GetSecurity Governance Condition V3Machine Spec> - Machine specific configuration (required when infra*type is Linux or Windows)
- name String
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - org
Id String - The organization ID of the security governance condition
- project
Id String - The project ID of the security governance condition
- List<String>
- Tags for the security governance condition
- identity String
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
- description string
- Description of the security governance condition
- fault
Specs GetSecurity Governance Condition V3Fault Spec[] - Specification for faults to be included in the condition
- id string
- The provider-assigned unique ID for this managed resource.
- infra
Type string - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- k8s
Specs GetSecurity Governance Condition V3K8s Spec[] - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- machine
Specs GetSecurity Governance Condition V3Machine Spec[] - Machine specific configuration (required when infra*type is Linux or Windows)
- name string
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - org
Id string - The organization ID of the security governance condition
- project
Id string - The project ID of the security governance condition
- string[]
- Tags for the security governance condition
- identity string
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
- description str
- Description of the security governance condition
- fault_
specs Sequence[GetSecurity Governance Condition V3Fault Spec] - Specification for faults to be included in the condition
- id str
- The provider-assigned unique ID for this managed resource.
- infra_
type str - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- k8s_
specs Sequence[GetSecurity Governance Condition V3K8s Spec] - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- machine_
specs Sequence[GetSecurity Governance Condition V3Machine Spec] - Machine specific configuration (required when infra*type is Linux or Windows)
- name str
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - org_
id str - The organization ID of the security governance condition
- project_
id str - The project ID of the security governance condition
- Sequence[str]
- Tags for the security governance condition
- identity str
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
- description String
- Description of the security governance condition
- fault
Specs List<Property Map> - Specification for faults to be included in the condition
- id String
- The provider-assigned unique ID for this managed resource.
- infra
Type String - Type of infrastructure (Kubernetes, KubernetesV2, Linux, Windows, CloudFoundry, Container)
- k8s
Specs List<Property Map> - Kubernetes specific configuration (required when infra*type is Kubernetes or KubernetesV2)
- machine
Specs List<Property Map> - Machine specific configuration (required when infra*type is Linux or Windows)
- name String
- The name of the security governance condition. Exactly one of
identityornamemust be provided. - org
Id String - The organization ID of the security governance condition
- project
Id String - The project ID of the security governance condition
- List<String>
- Tags for the security governance condition
- identity String
- The identifier of the security governance condition. Exactly one of
identityornamemust be provided.
Supporting Types
GetSecurityGovernanceConditionV3FaultSpec
- Faults
List<Get
Security Governance Condition V3Fault Spec Fault> - List of fault specifications
- Operator string
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
- Faults
[]Get
Security Governance Condition V3Fault Spec Fault - List of fault specifications
- Operator string
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
- faults list(object)
- List of fault specifications
- operator string
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
- faults
List<Get
Security Governance Condition V3Fault Spec Fault> - List of fault specifications
- operator String
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
- faults
Get
Security Governance Condition V3Fault Spec Fault[] - List of fault specifications
- operator string
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
- faults
Sequence[Get
Security Governance Condition V3Fault Spec Fault] - List of fault specifications
- operator str
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
- faults List<Property Map>
- List of fault specifications
- operator String
- Operator for comparing faults (EQUAL_TO or NOT_EQUAL_TO)
GetSecurityGovernanceConditionV3FaultSpecFault
- fault_
type string - Type of the fault (FAULT or FAULT_GROUP)
- name string
- Name of the fault
- fault_
type str - Type of the fault (FAULT or FAULT_GROUP)
- name str
- Name of the fault
GetSecurityGovernanceConditionV3K8sSpec
- Application
Specs List<GetSecurity Governance Condition V3K8s Spec Application Spec> - Application specification
- Chaos
Service List<GetAccount Specs Security Governance Condition V3K8s Spec Chaos Service Account Spec> - Chaos service account specification
- Infra
Specs List<GetSecurity Governance Condition V3K8s Spec Infra Spec> - Infrastructure specification
- Application
Specs []GetSecurity Governance Condition V3K8s Spec Application Spec - Application specification
- Chaos
Service []GetAccount Specs Security Governance Condition V3K8s Spec Chaos Service Account Spec - Chaos service account specification
- Infra
Specs []GetSecurity Governance Condition V3K8s Spec Infra Spec - Infrastructure specification
- application_
specs list(object) - Application specification
- chaos_
service_ list(object)account_ specs - Chaos service account specification
- infra_
specs list(object) - Infrastructure specification
- application
Specs List<GetSecurity Governance Condition V3K8s Spec Application Spec> - Application specification
- chaos
Service List<GetAccount Specs Security Governance Condition V3K8s Spec Chaos Service Account Spec> - Chaos service account specification
- infra
Specs List<GetSecurity Governance Condition V3K8s Spec Infra Spec> - Infrastructure specification
- application
Specs GetSecurity Governance Condition V3K8s Spec Application Spec[] - Application specification
- chaos
Service GetAccount Specs Security Governance Condition V3K8s Spec Chaos Service Account Spec[] - Chaos service account specification
- infra
Specs GetSecurity Governance Condition V3K8s Spec Infra Spec[] - Infrastructure specification
- application_
specs Sequence[GetSecurity Governance Condition V3K8s Spec Application Spec] - Application specification
- chaos_
service_ Sequence[Getaccount_ specs Security Governance Condition V3K8s Spec Chaos Service Account Spec] - Chaos service account specification
- infra_
specs Sequence[GetSecurity Governance Condition V3K8s Spec Infra Spec] - Infrastructure specification
- application
Specs List<Property Map> - Application specification
- chaos
Service List<Property Map>Account Specs - Chaos service account specification
- infra
Specs List<Property Map> - Infrastructure specification
GetSecurityGovernanceConditionV3K8sSpecApplicationSpec
- Operator string
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- Workloads
List<Get
Security Governance Condition V3K8s Spec Application Spec Workload> - List of workloads to include/exclude
- Operator string
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- Workloads
[]Get
Security Governance Condition V3K8s Spec Application Spec Workload - List of workloads to include/exclude
- operator string
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- workloads list(object)
- List of workloads to include/exclude
- operator String
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- workloads
List<Get
Security Governance Condition V3K8s Spec Application Spec Workload> - List of workloads to include/exclude
- operator string
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- workloads
Get
Security Governance Condition V3K8s Spec Application Spec Workload[] - List of workloads to include/exclude
- operator str
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- workloads
Sequence[Get
Security Governance Condition V3K8s Spec Application Spec Workload] - List of workloads to include/exclude
- operator String
- Operator for application matching (EQUAL_TO or NOT_EQUAL_TO)
- workloads List<Property Map>
- List of workloads to include/exclude
GetSecurityGovernanceConditionV3K8sSpecApplicationSpecWorkload
- Application
Map stringId - ID for the application map
- Kind string
- Kind of the workload (e.g., deployment, statefulset)
- Label string
- Label selector for the workload
- Namespace string
- Namespace of the workload
- Namespace
Labels Dictionary<string, string> - Namespace labels to match against, as key-value pairs
- Services List<string>
- List of services associated with the workload
- Application
Map stringId - ID for the application map
- Kind string
- Kind of the workload (e.g., deployment, statefulset)
- Label string
- Label selector for the workload
- Namespace string
- Namespace of the workload
- Namespace
Labels map[string]string - Namespace labels to match against, as key-value pairs
- Services []string
- List of services associated with the workload
- application_
map_ stringid - ID for the application map
- kind string
- Kind of the workload (e.g., deployment, statefulset)
- label string
- Label selector for the workload
- namespace string
- Namespace of the workload
- namespace_
labels map(string) - Namespace labels to match against, as key-value pairs
- services list(string)
- List of services associated with the workload
- application
Map StringId - ID for the application map
- kind String
- Kind of the workload (e.g., deployment, statefulset)
- label String
- Label selector for the workload
- namespace String
- Namespace of the workload
- namespace
Labels Map<String,String> - Namespace labels to match against, as key-value pairs
- services List<String>
- List of services associated with the workload
- application
Map stringId - ID for the application map
- kind string
- Kind of the workload (e.g., deployment, statefulset)
- label string
- Label selector for the workload
- namespace string
- Namespace of the workload
- namespace
Labels {[key: string]: string} - Namespace labels to match against, as key-value pairs
- services string[]
- List of services associated with the workload
- application_
map_ strid - ID for the application map
- kind str
- Kind of the workload (e.g., deployment, statefulset)
- label str
- Label selector for the workload
- namespace str
- Namespace of the workload
- namespace_
labels Mapping[str, str] - Namespace labels to match against, as key-value pairs
- services Sequence[str]
- List of services associated with the workload
- application
Map StringId - ID for the application map
- kind String
- Kind of the workload (e.g., deployment, statefulset)
- label String
- Label selector for the workload
- namespace String
- Namespace of the workload
- namespace
Labels Map<String> - Namespace labels to match against, as key-value pairs
- services List<String>
- List of services associated with the workload
GetSecurityGovernanceConditionV3K8sSpecChaosServiceAccountSpec
- Operator string
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- Service
Accounts List<string> - List of service accounts to include/exclude
- Operator string
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- Service
Accounts []string - List of service accounts to include/exclude
- operator string
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- service_
accounts list(string) - List of service accounts to include/exclude
- operator String
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- service
Accounts List<String> - List of service accounts to include/exclude
- operator string
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- service
Accounts string[] - List of service accounts to include/exclude
- operator str
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- service_
accounts Sequence[str] - List of service accounts to include/exclude
- operator String
- Operator for service account matching (EQUAL_TO or NOT_EQUAL_TO)
- service
Accounts List<String> - List of service accounts to include/exclude
GetSecurityGovernanceConditionV3K8sSpecInfraSpec
GetSecurityGovernanceConditionV3MachineSpec
- Infra
Specs List<GetSecurity Governance Condition V3Machine Spec Infra Spec> - Infrastructure specification
- Infra
Specs []GetSecurity Governance Condition V3Machine Spec Infra Spec - Infrastructure specification
- infra_
specs list(object) - Infrastructure specification
- infra
Specs List<GetSecurity Governance Condition V3Machine Spec Infra Spec> - Infrastructure specification
- infra
Specs GetSecurity Governance Condition V3Machine Spec Infra Spec[] - Infrastructure specification
- infra_
specs Sequence[GetSecurity Governance Condition V3Machine Spec Infra Spec] - Infrastructure specification
- infra
Specs List<Property Map> - Infrastructure specification
GetSecurityGovernanceConditionV3MachineSpecInfraSpec
Package Details
- Repository
- harness pulumi/pulumi-harness
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
harnessTerraform Provider.
Viewing docs for Harness v0.14.3
published on Thursday, Jun 18, 2026 by Pulumi
published on Thursday, Jun 18, 2026 by Pulumi