harness.platform.InfraModuleTesting
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:
- Module
Id 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
- Provider
Connector string - Provider connector for testing purposes
- Provisioner
Type string - Provisioner
Version string - Provisioner version for testing purposes
- Release
Pipeline string - Pipeline ID to create webhooks for releases
- Testing
Enabled bool - Whether testing is enabled for the module
- Testing
Metadata InfraModule Testing Testing Metadata - Testing metadata for the module
- Updated int
- Timestamp when the module was last modified
- Versions List<string>
- Versions of the module
- Module
Id 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
- Provider
Connector string - Provider connector for testing purposes
- Provisioner
Type string - Provisioner
Version string - Provisioner version for testing purposes
- Release
Pipeline string - Pipeline ID to create webhooks for releases
- Testing
Enabled bool - Whether testing is enabled for the module
- Testing
Metadata InfraModule Testing Testing Metadata Args - Testing metadata for the module
- Updated int
- Timestamp when the module was last modified
- Versions []string
- Versions of the module
- module
Id 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
- provider
Connector String - Provider connector for testing purposes
- provisioner
Type String - provisioner
Version String - Provisioner version for testing purposes
- release
Pipeline String - Pipeline ID to create webhooks for releases
- testing
Enabled Boolean - Whether testing is enabled for the module
- testing
Metadata InfraModule Testing Testing Metadata - Testing metadata for the module
- updated Integer
- Timestamp when the module was last modified
- versions List<String>
- Versions of the module
- module
Id 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
- provider
Connector string - Provider connector for testing purposes
- provisioner
Type string - provisioner
Version string - Provisioner version for testing purposes
- release
Pipeline string - Pipeline ID to create webhooks for releases
- testing
Enabled boolean - Whether testing is enabled for the module
- testing
Metadata InfraModule Testing Testing Metadata - 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 InfraModule Testing Testing Metadata Args - Testing metadata for the module
- updated int
- Timestamp when the module was last modified
- versions Sequence[str]
- Versions of the module
- module
Id 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
- provider
Connector String - Provider connector for testing purposes
- provisioner
Type String - provisioner
Version String - Provisioner version for testing purposes
- release
Pipeline String - Pipeline ID to create webhooks for releases
- testing
Enabled Boolean - Whether testing is enabled for the module
- testing
Metadata 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
- string
- Git Tag Style
- Id string
- The provider-assigned unique ID for this managed resource.
- Module
Error string - Error while retrieving the module
- Name string
- Name of the module
- Repository string
- For account connectors, the repository where the module is stored
- Repository
Branch string - Repository Branch in which the module should be accessed
- Repository
Commit string - Repository Commit in which the module should be accessed
- Repository
Connector string - Repository Connector is the reference to the connector for the repository
- Repository
Path string - Repository Path is the path in which the module resides
- Repository
Url string - URL where the module is stored
- Synced int
- Timestamp when the module was last synced
- System string
- Provider of the module
- 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
- string
- Git Tag Style
- Id string
- The provider-assigned unique ID for this managed resource.
- Module
Error string - Error while retrieving the module
- Name string
- Name of the module
- Repository string
- For account connectors, the repository where the module is stored
- Repository
Branch string - Repository Branch in which the module should be accessed
- Repository
Commit string - Repository Commit in which the module should be accessed
- Repository
Connector string - Repository Connector is the reference to the connector for the repository
- Repository
Path string - Repository Path is the path in which the module resides
- Repository
Url string - URL where the module is stored
- Synced int
- Timestamp when the module was last synced
- System string
- Provider of the module
- 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
- String
- Git Tag Style
- id String
- The provider-assigned unique ID for this managed resource.
- module
Error String - Error while retrieving the module
- name String
- Name of the module
- repository String
- For account connectors, the repository where the module is stored
- repository
Branch String - Repository Branch in which the module should be accessed
- repository
Commit String - Repository Commit in which the module should be accessed
- repository
Connector String - Repository Connector is the reference to the connector for the repository
- repository
Path String - Repository Path is the path in which the module resides
- repository
Url String - URL where the module is stored
- synced Integer
- Timestamp when the module was last synced
- system String
- Provider of the module
- 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
- string
- Git Tag Style
- id string
- The provider-assigned unique ID for this managed resource.
- module
Error string - Error while retrieving the module
- name string
- Name of the module
- repository string
- For account connectors, the repository where the module is stored
- repository
Branch string - Repository Branch in which the module should be accessed
- repository
Commit string - Repository Commit in which the module should be accessed
- repository
Connector string - Repository Connector is the reference to the connector for the repository
- repository
Path string - Repository Path is the path in which the module resides
- repository
Url string - URL where the module is stored
- synced number
- Timestamp when the module was last synced
- system string
- Provider of the module
- 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_ strstyle - 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
- 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
- String
- Git Tag Style
- id String
- The provider-assigned unique ID for this managed resource.
- module
Error String - Error while retrieving the module
- name String
- Name of the module
- repository String
- For account connectors, the repository where the module is stored
- repository
Branch String - Repository Branch in which the module should be accessed
- repository
Commit String - Repository Commit in which the module should be accessed
- repository
Connector String - Repository Connector is the reference to the connector for the repository
- repository
Path String - Repository Path is the path in which the module resides
- repository
Url String - URL where the module is stored
- synced Number
- Timestamp when the module was last synced
- system String
- Provider of the module
- 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) -> InfraModuleTestingfunc 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.
- Account string
- Account that owns the module
- Created int
- Timestamp when the module was created
- Description string
- Description of the module
- string
- Git Tag Style
- Module
Error string - Error while retrieving the module
- Module
Id 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
- Provider
Connector string - Provider connector for testing purposes
- Provisioner
Type string - Provisioner
Version string - Provisioner version for testing purposes
- Release
Pipeline string - Pipeline ID to create webhooks for releases
- Repository string
- For account connectors, the repository where the module is stored
- Repository
Branch string - Repository Branch in which the module should be accessed
- Repository
Commit string - Repository Commit in which the module should be accessed
- Repository
Connector string - Repository Connector is the reference to the connector for the repository
- Repository
Path string - Repository Path is the path in which the module resides
- Repository
Url string - URL where the module is stored
- Synced int
- Timestamp when the module was last synced
- System string
- Provider of the module
- string
- Tags associated with the module
- Testing
Enabled bool - Whether testing is enabled for the module
- Testing
Metadata InfraModule Testing Testing Metadata - 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
- string
- Git Tag Style
- Module
Error string - Error while retrieving the module
- Module
Id 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
- Provider
Connector string - Provider connector for testing purposes
- Provisioner
Type string - Provisioner
Version string - Provisioner version for testing purposes
- Release
Pipeline string - Pipeline ID to create webhooks for releases
- Repository string
- For account connectors, the repository where the module is stored
- Repository
Branch string - Repository Branch in which the module should be accessed
- Repository
Commit string - Repository Commit in which the module should be accessed
- Repository
Connector string - Repository Connector is the reference to the connector for the repository
- Repository
Path string - Repository Path is the path in which the module resides
- Repository
Url string - URL where the module is stored
- Synced int
- Timestamp when the module was last synced
- System string
- Provider of the module
- string
- Tags associated with the module
- Testing
Enabled bool - Whether testing is enabled for the module
- Testing
Metadata InfraModule Testing Testing Metadata Args - 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
- String
- Git Tag Style
- module
Error String - Error while retrieving the module
- module
Id 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
- provider
Connector String - Provider connector for testing purposes
- provisioner
Type String - provisioner
Version String - Provisioner version for testing purposes
- release
Pipeline String - Pipeline ID to create webhooks for releases
- repository String
- For account connectors, the repository where the module is stored
- repository
Branch String - Repository Branch in which the module should be accessed
- repository
Commit String - Repository Commit in which the module should be accessed
- repository
Connector String - Repository Connector is the reference to the connector for the repository
- repository
Path String - Repository Path is the path in which the module resides
- repository
Url String - URL where the module is stored
- synced Integer
- Timestamp when the module was last synced
- system String
- Provider of the module
- String
- Tags associated with the module
- testing
Enabled Boolean - Whether testing is enabled for the module
- testing
Metadata InfraModule Testing Testing Metadata - 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
- string
- Git Tag Style
- module
Error string - Error while retrieving the module
- module
Id 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
- provider
Connector string - Provider connector for testing purposes
- provisioner
Type string - provisioner
Version string - Provisioner version for testing purposes
- release
Pipeline string - Pipeline ID to create webhooks for releases
- repository string
- For account connectors, the repository where the module is stored
- repository
Branch string - Repository Branch in which the module should be accessed
- repository
Commit string - Repository Commit in which the module should be accessed
- repository
Connector string - Repository Connector is the reference to the connector for the repository
- repository
Path string - Repository Path is the path in which the module resides
- repository
Url string - URL where the module is stored
- synced number
- Timestamp when the module was last synced
- system string
- Provider of the module
- string
- Tags associated with the module
- testing
Enabled boolean - Whether testing is enabled for the module
- testing
Metadata InfraModule Testing Testing Metadata - 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_ strstyle - 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
- str
- Tags associated with the module
- testing_
enabled bool - Whether testing is enabled for the module
- testing_
metadata InfraModule Testing Testing Metadata Args - 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
- String
- Git Tag Style
- module
Error String - Error while retrieving the module
- module
Id 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
- provider
Connector String - Provider connector for testing purposes
- provisioner
Type String - provisioner
Version String - Provisioner version for testing purposes
- release
Pipeline String - Pipeline ID to create webhooks for releases
- repository String
- For account connectors, the repository where the module is stored
- repository
Branch String - Repository Branch in which the module should be accessed
- repository
Commit String - Repository Commit in which the module should be accessed
- repository
Connector String - Repository Connector is the reference to the connector for the repository
- repository
Path String - Repository Path is the path in which the module resides
- repository
Url String - URL where the module is stored
- synced Number
- Timestamp when the module was last synced
- system String
- Provider of the module
- String
- Tags associated with the module
- testing
Enabled Boolean - Whether testing is enabled for the module
- testing
Metadata 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
- Provider
Connector string - Provider connector for testing purposes
- Provisioner
Type string - Provisioner type for testing purposes
- Provisioner
Version string - Provisioner version for testing purposes
- Release
Pipeline 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
- Provider
Connector string - Provider connector for testing purposes
- Provisioner
Type string - Provisioner type for testing purposes
- Provisioner
Version string - Provisioner version for testing purposes
- Release
Pipeline 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
- provider
Connector String - Provider connector for testing purposes
- provisioner
Type String - Provisioner type for testing purposes
- provisioner
Version String - Provisioner version for testing purposes
- release
Pipeline 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
- provider
Connector string - Provider connector for testing purposes
- provisioner
Type string - Provisioner type for testing purposes
- provisioner
Version string - Provisioner version for testing purposes
- release
Pipeline 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
- provider
Connector String - Provider connector for testing purposes
- provisioner
Type String - Provisioner type for testing purposes
- provisioner
Version String - Provisioner version for testing purposes
- release
Pipeline 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
harnessTerraform Provider.
