harness.service.Winrm
Explore with Pulumi AI
Resource for creating an WinRM service. This resource uses the config-as-code API’s. When updating the name
or path
of this resource you should typically also set the create_before_destroy = true
lifecycle setting.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Harness = Lbrlabs.PulumiPackage.Harness;
return await Deployment.RunAsync(() =>
{
var exampleApplication = new Harness.Application("exampleApplication");
var exampleWinrm = new Harness.Service.Winrm("exampleWinrm", new()
{
AppId = exampleApplication.Id,
ArtifactType = "IIS_APP",
Description = "Service for deploying IIS appliactions using winrm.",
});
});
package main
import (
"github.com/lbrlabs/pulumi-harness/sdk/go/harness"
"github.com/lbrlabs/pulumi-harness/sdk/go/harness/service"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleApplication, err := harness.NewApplication(ctx, "exampleApplication", nil)
if err != nil {
return err
}
_, err = service.NewWinrm(ctx, "exampleWinrm", &service.WinrmArgs{
AppId: exampleApplication.ID(),
ArtifactType: pulumi.String("IIS_APP"),
Description: pulumi.String("Service for deploying IIS appliactions using winrm."),
})
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.service.Winrm;
import com.pulumi.harness.service.WinrmArgs;
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 exampleApplication = new Application("exampleApplication");
var exampleWinrm = new Winrm("exampleWinrm", WinrmArgs.builder()
.appId(exampleApplication.id())
.artifactType("IIS_APP")
.description("Service for deploying IIS appliactions using winrm.")
.build());
}
}
import pulumi
import lbrlabs_pulumi_harness as harness
example_application = harness.Application("exampleApplication")
example_winrm = harness.service.Winrm("exampleWinrm",
app_id=example_application.id,
artifact_type="IIS_APP",
description="Service for deploying IIS appliactions using winrm.")
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@lbrlabs/pulumi-harness";
const exampleApplication = new harness.Application("exampleApplication", {});
const exampleWinrm = new harness.service.Winrm("exampleWinrm", {
appId: exampleApplication.id,
artifactType: "IIS_APP",
description: "Service for deploying IIS appliactions using winrm.",
});
resources:
exampleApplication:
type: harness:Application
exampleWinrm:
type: harness:service:Winrm
properties:
appId: ${exampleApplication.id}
artifactType: IIS_APP
description: Service for deploying IIS appliactions using winrm.
Create Winrm Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Winrm(name: string, args: WinrmArgs, opts?: CustomResourceOptions);
@overload
def Winrm(resource_name: str,
args: WinrmArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Winrm(resource_name: str,
opts: Optional[ResourceOptions] = None,
app_id: Optional[str] = None,
artifact_type: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
variables: Optional[Sequence[WinrmVariableArgs]] = None)
func NewWinrm(ctx *Context, name string, args WinrmArgs, opts ...ResourceOption) (*Winrm, error)
public Winrm(string name, WinrmArgs args, CustomResourceOptions? opts = null)
type: harness:service:Winrm
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 WinrmArgs
- 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 WinrmArgs
- 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 WinrmArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WinrmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WinrmArgs
- 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 winrmResource = new Harness.Service.Winrm("winrmResource", new()
{
AppId = "string",
ArtifactType = "string",
Description = "string",
Name = "string",
Variables = new[]
{
new Harness.Service.Inputs.WinrmVariableArgs
{
Name = "string",
Type = "string",
Value = "string",
},
},
});
example, err := service.NewWinrm(ctx, "winrmResource", &service.WinrmArgs{
AppId: pulumi.String("string"),
ArtifactType: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Variables: service.WinrmVariableArray{
&service.WinrmVariableArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var winrmResource = new Winrm("winrmResource", WinrmArgs.builder()
.appId("string")
.artifactType("string")
.description("string")
.name("string")
.variables(WinrmVariableArgs.builder()
.name("string")
.type("string")
.value("string")
.build())
.build());
winrm_resource = harness.service.Winrm("winrmResource",
app_id="string",
artifact_type="string",
description="string",
name="string",
variables=[harness.service.WinrmVariableArgs(
name="string",
type="string",
value="string",
)])
const winrmResource = new harness.service.Winrm("winrmResource", {
appId: "string",
artifactType: "string",
description: "string",
name: "string",
variables: [{
name: "string",
type: "string",
value: "string",
}],
});
type: harness:service:Winrm
properties:
appId: string
artifactType: string
description: string
name: string
variables:
- name: string
type: string
value: string
Winrm 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 Winrm resource accepts the following input properties:
- App
Id string - The id of the application the service belongs to
- Artifact
Type string - The type of artifact to deploy.
- Description string
- Description of th service
- Name string
- Name of the service
- Variables
List<Lbrlabs.
Pulumi Package. Harness. Service. Inputs. Winrm Variable> - Variables to be used in the service
- App
Id string - The id of the application the service belongs to
- Artifact
Type string - The type of artifact to deploy.
- Description string
- Description of th service
- Name string
- Name of the service
- Variables
[]Winrm
Variable Args - Variables to be used in the service
- app
Id String - The id of the application the service belongs to
- artifact
Type String - The type of artifact to deploy.
- description String
- Description of th service
- name String
- Name of the service
- variables
List<Winrm
Variable> - Variables to be used in the service
- app
Id string - The id of the application the service belongs to
- artifact
Type string - The type of artifact to deploy.
- description string
- Description of th service
- name string
- Name of the service
- variables
Winrm
Variable[] - Variables to be used in the service
- app_
id str - The id of the application the service belongs to
- artifact_
type str - The type of artifact to deploy.
- description str
- Description of th service
- name str
- Name of the service
- variables
Sequence[Winrm
Variable Args] - Variables to be used in the service
- app
Id String - The id of the application the service belongs to
- artifact
Type String - The type of artifact to deploy.
- description String
- Description of th service
- name String
- Name of the service
- variables List<Property Map>
- Variables to be used in the service
Outputs
All input properties are implicitly available as output properties. Additionally, the Winrm resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Winrm Resource
Get an existing Winrm 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?: WinrmState, opts?: CustomResourceOptions): Winrm
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_id: Optional[str] = None,
artifact_type: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
variables: Optional[Sequence[WinrmVariableArgs]] = None) -> Winrm
func GetWinrm(ctx *Context, name string, id IDInput, state *WinrmState, opts ...ResourceOption) (*Winrm, error)
public static Winrm Get(string name, Input<string> id, WinrmState? state, CustomResourceOptions? opts = null)
public static Winrm get(String name, Output<String> id, WinrmState 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.
- App
Id string - The id of the application the service belongs to
- Artifact
Type string - The type of artifact to deploy.
- Description string
- Description of th service
- Name string
- Name of the service
- Variables
List<Lbrlabs.
Pulumi Package. Harness. Service. Inputs. Winrm Variable> - Variables to be used in the service
- App
Id string - The id of the application the service belongs to
- Artifact
Type string - The type of artifact to deploy.
- Description string
- Description of th service
- Name string
- Name of the service
- Variables
[]Winrm
Variable Args - Variables to be used in the service
- app
Id String - The id of the application the service belongs to
- artifact
Type String - The type of artifact to deploy.
- description String
- Description of th service
- name String
- Name of the service
- variables
List<Winrm
Variable> - Variables to be used in the service
- app
Id string - The id of the application the service belongs to
- artifact
Type string - The type of artifact to deploy.
- description string
- Description of th service
- name string
- Name of the service
- variables
Winrm
Variable[] - Variables to be used in the service
- app_
id str - The id of the application the service belongs to
- artifact_
type str - The type of artifact to deploy.
- description str
- Description of th service
- name str
- Name of the service
- variables
Sequence[Winrm
Variable Args] - Variables to be used in the service
- app
Id String - The id of the application the service belongs to
- artifact
Type String - The type of artifact to deploy.
- description String
- Description of th service
- name String
- Name of the service
- variables List<Property Map>
- Variables to be used in the service
Supporting Types
WinrmVariable, WinrmVariableArgs
Import
Import using the Harness application id and service id
$ pulumi import harness:service/winrm:Winrm example <app_id>/<svc_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- harness lbrlabs/pulumi-harness
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
harness
Terraform Provider.