harness.Application
Explore with Pulumi AI
Resource for creating a Harness application
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Harness = Lbrlabs.PulumiPackage.Harness;
return await Deployment.RunAsync(() =>
{
var myapp = new Harness.Application("myapp", new()
{
Description = "This is my first Harness application",
Tags = new[]
{
"mytag:myvalue",
"team:development",
},
});
});
package main
import (
"github.com/lbrlabs/pulumi-harness/sdk/go/harness"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := harness.NewApplication(ctx, "myapp", &harness.ApplicationArgs{
Description: pulumi.String("This is my first Harness application"),
Tags: pulumi.StringArray{
pulumi.String("mytag:myvalue"),
pulumi.String("team:development"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.Application;
import com.pulumi.harness.ApplicationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var myapp = new Application("myapp", ApplicationArgs.builder()
.description("This is my first Harness application")
.tags(
"mytag:myvalue",
"team:development")
.build());
}
}
import pulumi
import lbrlabs_pulumi_harness as harness
myapp = harness.Application("myapp",
description="This is my first Harness application",
tags=[
"mytag:myvalue",
"team:development",
])
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@lbrlabs/pulumi-harness";
const myapp = new harness.Application("myapp", {
description: "This is my first Harness application",
tags: [
"mytag:myvalue",
"team:development",
],
});
resources:
myapp:
type: harness:Application
properties:
description: This is my first Harness application
tags:
- mytag:myvalue
- team:development
Create Application Resource
new Application(name: string, args?: ApplicationArgs, opts?: CustomResourceOptions);
@overload
def Application(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
is_manual_trigger_authorized: Optional[bool] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
@overload
def Application(resource_name: str,
args: Optional[ApplicationArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewApplication(ctx *Context, name string, args *ApplicationArgs, opts ...ResourceOption) (*Application, error)
public Application(string name, ApplicationArgs? args = null, CustomResourceOptions? opts = null)
public Application(String name, ApplicationArgs args)
public Application(String name, ApplicationArgs args, CustomResourceOptions options)
type: harness:Application
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- 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 ApplicationArgs
- 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 ApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Application Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Application resource accepts the following input properties:
- Description string
The application description
- bool
When this is set to true, all manual triggers will require API Key authorization
- Name string
The name of the application
- List<string>
Tags to associate with the resource.
- Description string
The application description
- bool
When this is set to true, all manual triggers will require API Key authorization
- Name string
The name of the application
- []string
Tags to associate with the resource.
- description String
The application description
- Boolean
When this is set to true, all manual triggers will require API Key authorization
- name String
The name of the application
- List<String>
Tags to associate with the resource.
- description string
The application description
- boolean
When this is set to true, all manual triggers will require API Key authorization
- name string
The name of the application
- string[]
Tags to associate with the resource.
- description str
The application description
- bool
When this is set to true, all manual triggers will require API Key authorization
- name str
The name of the application
- Sequence[str]
Tags to associate with the resource.
- description String
The application description
- Boolean
When this is set to true, all manual triggers will require API Key authorization
- name String
The name of the application
- List<String>
Tags to associate with the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:
- Git
Sync stringConnector Id The id of the git sync connector
- Git
Sync boolEnabled True if git sync is enabled on this application
- Id string
The provider-assigned unique ID for this managed resource.
- Git
Sync stringConnector Id The id of the git sync connector
- Git
Sync boolEnabled True if git sync is enabled on this application
- Id string
The provider-assigned unique ID for this managed resource.
- git
Sync StringConnector Id The id of the git sync connector
- git
Sync BooleanEnabled True if git sync is enabled on this application
- id String
The provider-assigned unique ID for this managed resource.
- git
Sync stringConnector Id The id of the git sync connector
- git
Sync booleanEnabled True if git sync is enabled on this application
- id string
The provider-assigned unique ID for this managed resource.
- git_
sync_ strconnector_ id The id of the git sync connector
- git_
sync_ boolenabled True if git sync is enabled on this application
- id str
The provider-assigned unique ID for this managed resource.
- git
Sync StringConnector Id The id of the git sync connector
- git
Sync BooleanEnabled True if git sync is enabled on this application
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing Application Resource
Get an existing Application 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?: ApplicationState, opts?: CustomResourceOptions): Application
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
git_sync_connector_id: Optional[str] = None,
git_sync_enabled: Optional[bool] = None,
is_manual_trigger_authorized: Optional[bool] = None,
name: Optional[str] = None,
tags: Optional[Sequence[str]] = None) -> Application
func GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)
public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)
public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
The application description
- Git
Sync stringConnector Id The id of the git sync connector
- Git
Sync boolEnabled True if git sync is enabled on this application
- bool
When this is set to true, all manual triggers will require API Key authorization
- Name string
The name of the application
- List<string>
Tags to associate with the resource.
- Description string
The application description
- Git
Sync stringConnector Id The id of the git sync connector
- Git
Sync boolEnabled True if git sync is enabled on this application
- bool
When this is set to true, all manual triggers will require API Key authorization
- Name string
The name of the application
- []string
Tags to associate with the resource.
- description String
The application description
- git
Sync StringConnector Id The id of the git sync connector
- git
Sync BooleanEnabled True if git sync is enabled on this application
- Boolean
When this is set to true, all manual triggers will require API Key authorization
- name String
The name of the application
- List<String>
Tags to associate with the resource.
- description string
The application description
- git
Sync stringConnector Id The id of the git sync connector
- git
Sync booleanEnabled True if git sync is enabled on this application
- boolean
When this is set to true, all manual triggers will require API Key authorization
- name string
The name of the application
- string[]
Tags to associate with the resource.
- description str
The application description
- git_
sync_ strconnector_ id The id of the git sync connector
- git_
sync_ boolenabled True if git sync is enabled on this application
- bool
When this is set to true, all manual triggers will require API Key authorization
- name str
The name of the application
- Sequence[str]
Tags to associate with the resource.
- description String
The application description
- git
Sync StringConnector Id The id of the git sync connector
- git
Sync BooleanEnabled True if git sync is enabled on this application
- Boolean
When this is set to true, all manual triggers will require API Key authorization
- name String
The name of the application
- List<String>
Tags to associate with the resource.
Import
Import using the Harness application id
$ pulumi import harness:index/application:Application myapp Xyz123
Package Details
- Repository
- harness lbrlabs/pulumi-harness
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
harness
Terraform Provider.