1. Packages
  2. Harness Provider
  3. API Docs
  4. platform
  5. InfraModuleTesting
Harness v0.9.0 published on Wednesday, Oct 22, 2025 by Pulumi

harness.platform.InfraModuleTesting

Get Started
harness logo
Harness v0.9.0 published on Wednesday, Oct 22, 2025 by Pulumi

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      example:
        type: harness:platform:InfraModule
        properties:
          moduleId: 1234
          org: default
          project: project
          providerConnector: account.connector
          provisionerType: tofu
          provisionerVersion: 1.9.4
          pipelines:
            - pipelinea
            - pipelineb
    

    Create InfraModuleTesting Resource

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

    Constructor syntax

    new InfraModuleTesting(name: string, args: InfraModuleTestingArgs, opts?: CustomResourceOptions);
    @overload
    def InfraModuleTesting(resource_name: str,
                           args: InfraModuleTestingArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def InfraModuleTesting(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           module_id: Optional[str] = None,
                           org: Optional[str] = None,
                           pipelines: Optional[Sequence[str]] = None,
                           project: Optional[str] = None,
                           provider_connector: Optional[str] = None,
                           provisioner_type: Optional[str] = None,
                           provisioner_version: Optional[str] = None,
                           release_pipeline: Optional[str] = None,
                           testing_enabled: Optional[bool] = None,
                           testing_metadata: Optional[InfraModuleTestingTestingMetadataArgs] = None,
                           updated: Optional[int] = None,
                           versions: Optional[Sequence[str]] = None)
    func NewInfraModuleTesting(ctx *Context, name string, args InfraModuleTestingArgs, opts ...ResourceOption) (*InfraModuleTesting, error)
    public InfraModuleTesting(string name, InfraModuleTestingArgs args, CustomResourceOptions? opts = null)
    public InfraModuleTesting(String name, InfraModuleTestingArgs args)
    public InfraModuleTesting(String name, InfraModuleTestingArgs args, CustomResourceOptions options)
    
    type: harness:platform:InfraModuleTesting
    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 InfraModuleTestingArgs
    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 InfraModuleTestingArgs
    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 InfraModuleTestingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InfraModuleTestingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InfraModuleTestingArgs
    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 infraModuleTestingResource = new Harness.Platform.InfraModuleTesting("infraModuleTestingResource", new()
    {
        ModuleId = "string",
        Org = "string",
        Pipelines = new[]
        {
            "string",
        },
        Project = "string",
        ProviderConnector = "string",
        ProvisionerType = "string",
        ProvisionerVersion = "string",
        ReleasePipeline = "string",
        TestingEnabled = false,
        TestingMetadata = new Harness.Platform.Inputs.InfraModuleTestingTestingMetadataArgs
        {
            Account = "string",
            Org = "string",
            Pipelines = new[]
            {
                "string",
            },
            Project = "string",
            ProviderConnector = "string",
            ProvisionerType = "string",
            ProvisionerVersion = "string",
            ReleasePipeline = "string",
        },
        Updated = 0,
        Versions = new[]
        {
            "string",
        },
    });
    
    example, err := platform.NewInfraModuleTesting(ctx, "infraModuleTestingResource", &platform.InfraModuleTestingArgs{
    	ModuleId: pulumi.String("string"),
    	Org:      pulumi.String("string"),
    	Pipelines: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Project:            pulumi.String("string"),
    	ProviderConnector:  pulumi.String("string"),
    	ProvisionerType:    pulumi.String("string"),
    	ProvisionerVersion: pulumi.String("string"),
    	ReleasePipeline:    pulumi.String("string"),
    	TestingEnabled:     pulumi.Bool(false),
    	TestingMetadata: &platform.InfraModuleTestingTestingMetadataArgs{
    		Account: pulumi.String("string"),
    		Org:     pulumi.String("string"),
    		Pipelines: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Project:            pulumi.String("string"),
    		ProviderConnector:  pulumi.String("string"),
    		ProvisionerType:    pulumi.String("string"),
    		ProvisionerVersion: pulumi.String("string"),
    		ReleasePipeline:    pulumi.String("string"),
    	},
    	Updated: pulumi.Int(0),
    	Versions: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var infraModuleTestingResource = new InfraModuleTesting("infraModuleTestingResource", InfraModuleTestingArgs.builder()
        .moduleId("string")
        .org("string")
        .pipelines("string")
        .project("string")
        .providerConnector("string")
        .provisionerType("string")
        .provisionerVersion("string")
        .releasePipeline("string")
        .testingEnabled(false)
        .testingMetadata(InfraModuleTestingTestingMetadataArgs.builder()
            .account("string")
            .org("string")
            .pipelines("string")
            .project("string")
            .providerConnector("string")
            .provisionerType("string")
            .provisionerVersion("string")
            .releasePipeline("string")
            .build())
        .updated(0)
        .versions("string")
        .build());
    
    infra_module_testing_resource = harness.platform.InfraModuleTesting("infraModuleTestingResource",
        module_id="string",
        org="string",
        pipelines=["string"],
        project="string",
        provider_connector="string",
        provisioner_type="string",
        provisioner_version="string",
        release_pipeline="string",
        testing_enabled=False,
        testing_metadata={
            "account": "string",
            "org": "string",
            "pipelines": ["string"],
            "project": "string",
            "provider_connector": "string",
            "provisioner_type": "string",
            "provisioner_version": "string",
            "release_pipeline": "string",
        },
        updated=0,
        versions=["string"])
    
    const infraModuleTestingResource = new harness.platform.InfraModuleTesting("infraModuleTestingResource", {
        moduleId: "string",
        org: "string",
        pipelines: ["string"],
        project: "string",
        providerConnector: "string",
        provisionerType: "string",
        provisionerVersion: "string",
        releasePipeline: "string",
        testingEnabled: false,
        testingMetadata: {
            account: "string",
            org: "string",
            pipelines: ["string"],
            project: "string",
            providerConnector: "string",
            provisionerType: "string",
            provisionerVersion: "string",
            releasePipeline: "string",
        },
        updated: 0,
        versions: ["string"],
    });
    
    type: harness:platform:InfraModuleTesting
    properties:
        moduleId: string
        org: string
        pipelines:
            - string
        project: string
        providerConnector: string
        provisionerType: string
        provisionerVersion: string
        releasePipeline: string
        testingEnabled: false
        testingMetadata:
            account: string
            org: string
            pipelines:
                - string
            project: string
            providerConnector: string
            provisionerType: string
            provisionerVersion: string
            releasePipeline: string
        updated: 0
        versions:
            - string
    

    InfraModuleTesting 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 InfraModuleTesting resource accepts the following input properties:

    ModuleId string
    Identifier of the module to enable testing for
    Org string
    Organization identifier
    Pipelines List<string>
    List of pipeline IDs to create webhooks for triggering test executions
    Project string
    Project identifier
    ProviderConnector string
    Provider connector for testing purposes
    ProvisionerType string
    ProvisionerVersion string
    Provisioner version for testing purposes
    ReleasePipeline string
    Pipeline ID to create webhooks for releases
    TestingEnabled bool
    Whether testing is enabled for the module
    TestingMetadata InfraModuleTestingTestingMetadata
    Testing metadata for the module
    Updated int
    Timestamp when the module was last modified
    Versions List<string>
    Versions of the module
    ModuleId string
    Identifier of the module to enable testing for
    Org string
    Organization identifier
    Pipelines []string
    List of pipeline IDs to create webhooks for triggering test executions
    Project string
    Project identifier
    ProviderConnector string
    Provider connector for testing purposes
    ProvisionerType string
    ProvisionerVersion string
    Provisioner version for testing purposes
    ReleasePipeline string
    Pipeline ID to create webhooks for releases
    TestingEnabled bool
    Whether testing is enabled for the module
    TestingMetadata InfraModuleTestingTestingMetadataArgs
    Testing metadata for the module
    Updated int
    Timestamp when the module was last modified
    Versions []string
    Versions of the module
    moduleId String
    Identifier of the module to enable testing for
    org String
    Organization identifier
    pipelines List<String>
    List of pipeline IDs to create webhooks for triggering test executions
    project String
    Project identifier
    providerConnector String
    Provider connector for testing purposes
    provisionerType String
    provisionerVersion String
    Provisioner version for testing purposes
    releasePipeline String
    Pipeline ID to create webhooks for releases
    testingEnabled Boolean
    Whether testing is enabled for the module
    testingMetadata InfraModuleTestingTestingMetadata
    Testing metadata for the module
    updated Integer
    Timestamp when the module was last modified
    versions List<String>
    Versions of the module
    moduleId string
    Identifier of the module to enable testing for
    org string
    Organization identifier
    pipelines string[]
    List of pipeline IDs to create webhooks for triggering test executions
    project string
    Project identifier
    providerConnector string
    Provider connector for testing purposes
    provisionerType string
    provisionerVersion string
    Provisioner version for testing purposes
    releasePipeline string
    Pipeline ID to create webhooks for releases
    testingEnabled boolean
    Whether testing is enabled for the module
    testingMetadata InfraModuleTestingTestingMetadata
    Testing metadata for the module
    updated number
    Timestamp when the module was last modified
    versions string[]
    Versions of the module
    module_id str
    Identifier of the module to enable testing for
    org str
    Organization identifier
    pipelines Sequence[str]
    List of pipeline IDs to create webhooks for triggering test executions
    project str
    Project identifier
    provider_connector str
    Provider connector for testing purposes
    provisioner_type str
    provisioner_version str
    Provisioner version for testing purposes
    release_pipeline str
    Pipeline ID to create webhooks for releases
    testing_enabled bool
    Whether testing is enabled for the module
    testing_metadata InfraModuleTestingTestingMetadataArgs
    Testing metadata for the module
    updated int
    Timestamp when the module was last modified
    versions Sequence[str]
    Versions of the module
    moduleId String
    Identifier of the module to enable testing for
    org String
    Organization identifier
    pipelines List<String>
    List of pipeline IDs to create webhooks for triggering test executions
    project String
    Project identifier
    providerConnector String
    Provider connector for testing purposes
    provisionerType String
    provisionerVersion String
    Provisioner version for testing purposes
    releasePipeline String
    Pipeline ID to create webhooks for releases
    testingEnabled Boolean
    Whether testing is enabled for the module
    testingMetadata Property Map
    Testing metadata for the module
    updated Number
    Timestamp when the module was last modified
    versions List<String>
    Versions of the module

    Outputs

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

    Account string
    Account that owns the module
    Created int
    Timestamp when the module was created
    Description string
    Description of the module
    GitTagStyle string
    Git Tag Style
    Id string
    The provider-assigned unique ID for this managed resource.
    ModuleError string
    Error while retrieving the module
    Name string
    Name of the module
    Repository string
    For account connectors, the repository where the module is stored
    RepositoryBranch string
    Repository Branch in which the module should be accessed
    RepositoryCommit string
    Repository Commit in which the module should be accessed
    RepositoryConnector string
    Repository Connector is the reference to the connector for the repository
    RepositoryPath string
    Repository Path is the path in which the module resides
    RepositoryUrl string
    URL where the module is stored
    Synced int
    Timestamp when the module was last synced
    System string
    Provider of the module
    Tags string
    Tags associated with the module
    Account string
    Account that owns the module
    Created int
    Timestamp when the module was created
    Description string
    Description of the module
    GitTagStyle string
    Git Tag Style
    Id string
    The provider-assigned unique ID for this managed resource.
    ModuleError string
    Error while retrieving the module
    Name string
    Name of the module
    Repository string
    For account connectors, the repository where the module is stored
    RepositoryBranch string
    Repository Branch in which the module should be accessed
    RepositoryCommit string
    Repository Commit in which the module should be accessed
    RepositoryConnector string
    Repository Connector is the reference to the connector for the repository
    RepositoryPath string
    Repository Path is the path in which the module resides
    RepositoryUrl string
    URL where the module is stored
    Synced int
    Timestamp when the module was last synced
    System string
    Provider of the module
    Tags string
    Tags associated with the module
    account String
    Account that owns the module
    created Integer
    Timestamp when the module was created
    description String
    Description of the module
    gitTagStyle String
    Git Tag Style
    id String
    The provider-assigned unique ID for this managed resource.
    moduleError String
    Error while retrieving the module
    name String
    Name of the module
    repository String
    For account connectors, the repository where the module is stored
    repositoryBranch String
    Repository Branch in which the module should be accessed
    repositoryCommit String
    Repository Commit in which the module should be accessed
    repositoryConnector String
    Repository Connector is the reference to the connector for the repository
    repositoryPath String
    Repository Path is the path in which the module resides
    repositoryUrl String
    URL where the module is stored
    synced Integer
    Timestamp when the module was last synced
    system String
    Provider of the module
    tags String
    Tags associated with the module
    account string
    Account that owns the module
    created number
    Timestamp when the module was created
    description string
    Description of the module
    gitTagStyle string
    Git Tag Style
    id string
    The provider-assigned unique ID for this managed resource.
    moduleError string
    Error while retrieving the module
    name string
    Name of the module
    repository string
    For account connectors, the repository where the module is stored
    repositoryBranch string
    Repository Branch in which the module should be accessed
    repositoryCommit string
    Repository Commit in which the module should be accessed
    repositoryConnector string
    Repository Connector is the reference to the connector for the repository
    repositoryPath string
    Repository Path is the path in which the module resides
    repositoryUrl string
    URL where the module is stored
    synced number
    Timestamp when the module was last synced
    system string
    Provider of the module
    tags string
    Tags associated with the module
    account str
    Account that owns the module
    created int
    Timestamp when the module was created
    description str
    Description of the module
    git_tag_style str
    Git Tag Style
    id str
    The provider-assigned unique ID for this managed resource.
    module_error str
    Error while retrieving the module
    name str
    Name of the module
    repository str
    For account connectors, the repository where the module is stored
    repository_branch str
    Repository Branch in which the module should be accessed
    repository_commit str
    Repository Commit in which the module should be accessed
    repository_connector str
    Repository Connector is the reference to the connector for the repository
    repository_path str
    Repository Path is the path in which the module resides
    repository_url str
    URL where the module is stored
    synced int
    Timestamp when the module was last synced
    system str
    Provider of the module
    tags str
    Tags associated with the module
    account String
    Account that owns the module
    created Number
    Timestamp when the module was created
    description String
    Description of the module
    gitTagStyle String
    Git Tag Style
    id String
    The provider-assigned unique ID for this managed resource.
    moduleError String
    Error while retrieving the module
    name String
    Name of the module
    repository String
    For account connectors, the repository where the module is stored
    repositoryBranch String
    Repository Branch in which the module should be accessed
    repositoryCommit String
    Repository Commit in which the module should be accessed
    repositoryConnector String
    Repository Connector is the reference to the connector for the repository
    repositoryPath String
    Repository Path is the path in which the module resides
    repositoryUrl String
    URL where the module is stored
    synced Number
    Timestamp when the module was last synced
    system String
    Provider of the module
    tags String
    Tags associated with the module

    Look up Existing InfraModuleTesting Resource

    Get an existing InfraModuleTesting 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?: InfraModuleTestingState, opts?: CustomResourceOptions): InfraModuleTesting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account: Optional[str] = None,
            created: Optional[int] = None,
            description: Optional[str] = None,
            git_tag_style: Optional[str] = None,
            module_error: Optional[str] = None,
            module_id: Optional[str] = None,
            name: Optional[str] = None,
            org: Optional[str] = None,
            pipelines: Optional[Sequence[str]] = None,
            project: Optional[str] = None,
            provider_connector: Optional[str] = None,
            provisioner_type: Optional[str] = None,
            provisioner_version: Optional[str] = None,
            release_pipeline: Optional[str] = None,
            repository: Optional[str] = None,
            repository_branch: Optional[str] = None,
            repository_commit: Optional[str] = None,
            repository_connector: Optional[str] = None,
            repository_path: Optional[str] = None,
            repository_url: Optional[str] = None,
            synced: Optional[int] = None,
            system: Optional[str] = None,
            tags: Optional[str] = None,
            testing_enabled: Optional[bool] = None,
            testing_metadata: Optional[InfraModuleTestingTestingMetadataArgs] = None,
            updated: Optional[int] = None,
            versions: Optional[Sequence[str]] = None) -> InfraModuleTesting
    func GetInfraModuleTesting(ctx *Context, name string, id IDInput, state *InfraModuleTestingState, opts ...ResourceOption) (*InfraModuleTesting, error)
    public static InfraModuleTesting Get(string name, Input<string> id, InfraModuleTestingState? state, CustomResourceOptions? opts = null)
    public static InfraModuleTesting get(String name, Output<String> id, InfraModuleTestingState state, CustomResourceOptions options)
    resources:  _:    type: harness:platform:InfraModuleTesting    get:      id: ${id}
    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.
    The following state arguments are supported:
    Account string
    Account that owns the module
    Created int
    Timestamp when the module was created
    Description string
    Description of the module
    GitTagStyle string
    Git Tag Style
    ModuleError string
    Error while retrieving the module
    ModuleId string
    Identifier of the module to enable testing for
    Name string
    Name of the module
    Org string
    Organization identifier
    Pipelines List<string>
    List of pipeline IDs to create webhooks for triggering test executions
    Project string
    Project identifier
    ProviderConnector string
    Provider connector for testing purposes
    ProvisionerType string
    ProvisionerVersion string
    Provisioner version for testing purposes
    ReleasePipeline string
    Pipeline ID to create webhooks for releases
    Repository string
    For account connectors, the repository where the module is stored
    RepositoryBranch string
    Repository Branch in which the module should be accessed
    RepositoryCommit string
    Repository Commit in which the module should be accessed
    RepositoryConnector string
    Repository Connector is the reference to the connector for the repository
    RepositoryPath string
    Repository Path is the path in which the module resides
    RepositoryUrl string
    URL where the module is stored
    Synced int
    Timestamp when the module was last synced
    System string
    Provider of the module
    Tags string
    Tags associated with the module
    TestingEnabled bool
    Whether testing is enabled for the module
    TestingMetadata InfraModuleTestingTestingMetadata
    Testing metadata for the module
    Updated int
    Timestamp when the module was last modified
    Versions List<string>
    Versions of the module
    Account string
    Account that owns the module
    Created int
    Timestamp when the module was created
    Description string
    Description of the module
    GitTagStyle string
    Git Tag Style
    ModuleError string
    Error while retrieving the module
    ModuleId string
    Identifier of the module to enable testing for
    Name string
    Name of the module
    Org string
    Organization identifier
    Pipelines []string
    List of pipeline IDs to create webhooks for triggering test executions
    Project string
    Project identifier
    ProviderConnector string
    Provider connector for testing purposes
    ProvisionerType string
    ProvisionerVersion string
    Provisioner version for testing purposes
    ReleasePipeline string
    Pipeline ID to create webhooks for releases
    Repository string
    For account connectors, the repository where the module is stored
    RepositoryBranch string
    Repository Branch in which the module should be accessed
    RepositoryCommit string
    Repository Commit in which the module should be accessed
    RepositoryConnector string
    Repository Connector is the reference to the connector for the repository
    RepositoryPath string
    Repository Path is the path in which the module resides
    RepositoryUrl string
    URL where the module is stored
    Synced int
    Timestamp when the module was last synced
    System string
    Provider of the module
    Tags string
    Tags associated with the module
    TestingEnabled bool
    Whether testing is enabled for the module
    TestingMetadata InfraModuleTestingTestingMetadataArgs
    Testing metadata for the module
    Updated int
    Timestamp when the module was last modified
    Versions []string
    Versions of the module
    account String
    Account that owns the module
    created Integer
    Timestamp when the module was created
    description String
    Description of the module
    gitTagStyle String
    Git Tag Style
    moduleError String
    Error while retrieving the module
    moduleId String
    Identifier of the module to enable testing for
    name String
    Name of the module
    org String
    Organization identifier
    pipelines List<String>
    List of pipeline IDs to create webhooks for triggering test executions
    project String
    Project identifier
    providerConnector String
    Provider connector for testing purposes
    provisionerType String
    provisionerVersion String
    Provisioner version for testing purposes
    releasePipeline String
    Pipeline ID to create webhooks for releases
    repository String
    For account connectors, the repository where the module is stored
    repositoryBranch String
    Repository Branch in which the module should be accessed
    repositoryCommit String
    Repository Commit in which the module should be accessed
    repositoryConnector String
    Repository Connector is the reference to the connector for the repository
    repositoryPath String
    Repository Path is the path in which the module resides
    repositoryUrl String
    URL where the module is stored
    synced Integer
    Timestamp when the module was last synced
    system String
    Provider of the module
    tags String
    Tags associated with the module
    testingEnabled Boolean
    Whether testing is enabled for the module
    testingMetadata InfraModuleTestingTestingMetadata
    Testing metadata for the module
    updated Integer
    Timestamp when the module was last modified
    versions List<String>
    Versions of the module
    account string
    Account that owns the module
    created number
    Timestamp when the module was created
    description string
    Description of the module
    gitTagStyle string
    Git Tag Style
    moduleError string
    Error while retrieving the module
    moduleId string
    Identifier of the module to enable testing for
    name string
    Name of the module
    org string
    Organization identifier
    pipelines string[]
    List of pipeline IDs to create webhooks for triggering test executions
    project string
    Project identifier
    providerConnector string
    Provider connector for testing purposes
    provisionerType string
    provisionerVersion string
    Provisioner version for testing purposes
    releasePipeline string
    Pipeline ID to create webhooks for releases
    repository string
    For account connectors, the repository where the module is stored
    repositoryBranch string
    Repository Branch in which the module should be accessed
    repositoryCommit string
    Repository Commit in which the module should be accessed
    repositoryConnector string
    Repository Connector is the reference to the connector for the repository
    repositoryPath string
    Repository Path is the path in which the module resides
    repositoryUrl string
    URL where the module is stored
    synced number
    Timestamp when the module was last synced
    system string
    Provider of the module
    tags string
    Tags associated with the module
    testingEnabled boolean
    Whether testing is enabled for the module
    testingMetadata InfraModuleTestingTestingMetadata
    Testing metadata for the module
    updated number
    Timestamp when the module was last modified
    versions string[]
    Versions of the module
    account str
    Account that owns the module
    created int
    Timestamp when the module was created
    description str
    Description of the module
    git_tag_style str
    Git Tag Style
    module_error str
    Error while retrieving the module
    module_id str
    Identifier of the module to enable testing for
    name str
    Name of the module
    org str
    Organization identifier
    pipelines Sequence[str]
    List of pipeline IDs to create webhooks for triggering test executions
    project str
    Project identifier
    provider_connector str
    Provider connector for testing purposes
    provisioner_type str
    provisioner_version str
    Provisioner version for testing purposes
    release_pipeline str
    Pipeline ID to create webhooks for releases
    repository str
    For account connectors, the repository where the module is stored
    repository_branch str
    Repository Branch in which the module should be accessed
    repository_commit str
    Repository Commit in which the module should be accessed
    repository_connector str
    Repository Connector is the reference to the connector for the repository
    repository_path str
    Repository Path is the path in which the module resides
    repository_url str
    URL where the module is stored
    synced int
    Timestamp when the module was last synced
    system str
    Provider of the module
    tags str
    Tags associated with the module
    testing_enabled bool
    Whether testing is enabled for the module
    testing_metadata InfraModuleTestingTestingMetadataArgs
    Testing metadata for the module
    updated int
    Timestamp when the module was last modified
    versions Sequence[str]
    Versions of the module
    account String
    Account that owns the module
    created Number
    Timestamp when the module was created
    description String
    Description of the module
    gitTagStyle String
    Git Tag Style
    moduleError String
    Error while retrieving the module
    moduleId String
    Identifier of the module to enable testing for
    name String
    Name of the module
    org String
    Organization identifier
    pipelines List<String>
    List of pipeline IDs to create webhooks for triggering test executions
    project String
    Project identifier
    providerConnector String
    Provider connector for testing purposes
    provisionerType String
    provisionerVersion String
    Provisioner version for testing purposes
    releasePipeline String
    Pipeline ID to create webhooks for releases
    repository String
    For account connectors, the repository where the module is stored
    repositoryBranch String
    Repository Branch in which the module should be accessed
    repositoryCommit String
    Repository Commit in which the module should be accessed
    repositoryConnector String
    Repository Connector is the reference to the connector for the repository
    repositoryPath String
    Repository Path is the path in which the module resides
    repositoryUrl String
    URL where the module is stored
    synced Number
    Timestamp when the module was last synced
    system String
    Provider of the module
    tags String
    Tags associated with the module
    testingEnabled Boolean
    Whether testing is enabled for the module
    testingMetadata Property Map
    Testing metadata for the module
    updated Number
    Timestamp when the module was last modified
    versions List<String>
    Versions of the module

    Supporting Types

    InfraModuleTestingTestingMetadata, InfraModuleTestingTestingMetadataArgs

    Account string
    Account is the internal customer account ID
    Org string
    Organization identifier
    Pipelines List<string>
    Pipelines where the testing is enabled
    Project string
    Project identifier
    ProviderConnector string
    Provider connector for testing purposes
    ProvisionerType string
    Provisioner type for testing purposes
    ProvisionerVersion string
    Provisioner version for testing purposes
    ReleasePipeline string
    Release pipeline
    Account string
    Account is the internal customer account ID
    Org string
    Organization identifier
    Pipelines []string
    Pipelines where the testing is enabled
    Project string
    Project identifier
    ProviderConnector string
    Provider connector for testing purposes
    ProvisionerType string
    Provisioner type for testing purposes
    ProvisionerVersion string
    Provisioner version for testing purposes
    ReleasePipeline string
    Release pipeline
    account String
    Account is the internal customer account ID
    org String
    Organization identifier
    pipelines List<String>
    Pipelines where the testing is enabled
    project String
    Project identifier
    providerConnector String
    Provider connector for testing purposes
    provisionerType String
    Provisioner type for testing purposes
    provisionerVersion String
    Provisioner version for testing purposes
    releasePipeline String
    Release pipeline
    account string
    Account is the internal customer account ID
    org string
    Organization identifier
    pipelines string[]
    Pipelines where the testing is enabled
    project string
    Project identifier
    providerConnector string
    Provider connector for testing purposes
    provisionerType string
    Provisioner type for testing purposes
    provisionerVersion string
    Provisioner version for testing purposes
    releasePipeline string
    Release pipeline
    account str
    Account is the internal customer account ID
    org str
    Organization identifier
    pipelines Sequence[str]
    Pipelines where the testing is enabled
    project str
    Project identifier
    provider_connector str
    Provider connector for testing purposes
    provisioner_type str
    Provisioner type for testing purposes
    provisioner_version str
    Provisioner version for testing purposes
    release_pipeline str
    Release pipeline
    account String
    Account is the internal customer account ID
    org String
    Organization identifier
    pipelines List<String>
    Pipelines where the testing is enabled
    project String
    Project identifier
    providerConnector String
    Provider connector for testing purposes
    provisionerType String
    Provisioner type for testing purposes
    provisionerVersion String
    Provisioner version for testing purposes
    releasePipeline String
    Release pipeline

    Import

    The pulumi import command can be used, for example:

    $ pulumi import harness:platform/infraModuleTesting:InfraModuleTesting example <module_id>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    harness pulumi/pulumi-harness
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the harness Terraform Provider.
    harness logo
    Harness v0.9.0 published on Wednesday, Oct 22, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate