1. Packages
  2. Octopusdeploy Provider
  3. API Docs
  4. Environment
octopusdeploy 0.43.0 published on Thursday, Apr 17, 2025 by octopusdeploylabs

octopusdeploy.Environment

Explore with Pulumi AI

octopusdeploy logo
octopusdeploy 0.43.0 published on Thursday, Apr 17, 2025 by octopusdeploylabs

    This resource manages environments in Octopus Deploy.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as octopusdeploy from "@pulumi/octopusdeploy";
    
    const example = new octopusdeploy.Environment("example", {
        allowDynamicInfrastructure: false,
        description: "An environment for the development team.",
        jiraExtensionSettings: [{
            environmentType: "unmapped",
        }],
        jiraServiceManagementExtensionSettings: [{
            isEnabled: false,
        }],
        servicenowExtensionSettings: [{
            isEnabled: false,
        }],
        useGuidedFailure: false,
    });
    
    import pulumi
    import pulumi_octopusdeploy as octopusdeploy
    
    example = octopusdeploy.Environment("example",
        allow_dynamic_infrastructure=False,
        description="An environment for the development team.",
        jira_extension_settings=[{
            "environment_type": "unmapped",
        }],
        jira_service_management_extension_settings=[{
            "is_enabled": False,
        }],
        servicenow_extension_settings=[{
            "is_enabled": False,
        }],
        use_guided_failure=False)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/octopusdeploy/octopusdeploy"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := octopusdeploy.NewEnvironment(ctx, "example", &octopusdeploy.EnvironmentArgs{
    			AllowDynamicInfrastructure: pulumi.Bool(false),
    			Description:                pulumi.String("An environment for the development team."),
    			JiraExtensionSettings: octopusdeploy.EnvironmentJiraExtensionSettingArray{
    				&octopusdeploy.EnvironmentJiraExtensionSettingArgs{
    					EnvironmentType: pulumi.String("unmapped"),
    				},
    			},
    			JiraServiceManagementExtensionSettings: octopusdeploy.EnvironmentJiraServiceManagementExtensionSettingArray{
    				&octopusdeploy.EnvironmentJiraServiceManagementExtensionSettingArgs{
    					IsEnabled: pulumi.Bool(false),
    				},
    			},
    			ServicenowExtensionSettings: octopusdeploy.EnvironmentServicenowExtensionSettingArray{
    				&octopusdeploy.EnvironmentServicenowExtensionSettingArgs{
    					IsEnabled: pulumi.Bool(false),
    				},
    			},
    			UseGuidedFailure: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Octopusdeploy = Pulumi.Octopusdeploy;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Octopusdeploy.Environment("example", new()
        {
            AllowDynamicInfrastructure = false,
            Description = "An environment for the development team.",
            JiraExtensionSettings = new[]
            {
                new Octopusdeploy.Inputs.EnvironmentJiraExtensionSettingArgs
                {
                    EnvironmentType = "unmapped",
                },
            },
            JiraServiceManagementExtensionSettings = new[]
            {
                new Octopusdeploy.Inputs.EnvironmentJiraServiceManagementExtensionSettingArgs
                {
                    IsEnabled = false,
                },
            },
            ServicenowExtensionSettings = new[]
            {
                new Octopusdeploy.Inputs.EnvironmentServicenowExtensionSettingArgs
                {
                    IsEnabled = false,
                },
            },
            UseGuidedFailure = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.octopusdeploy.Environment;
    import com.pulumi.octopusdeploy.EnvironmentArgs;
    import com.pulumi.octopusdeploy.inputs.EnvironmentJiraExtensionSettingArgs;
    import com.pulumi.octopusdeploy.inputs.EnvironmentJiraServiceManagementExtensionSettingArgs;
    import com.pulumi.octopusdeploy.inputs.EnvironmentServicenowExtensionSettingArgs;
    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 example = new Environment("example", EnvironmentArgs.builder()
                .allowDynamicInfrastructure(false)
                .description("An environment for the development team.")
                .jiraExtensionSettings(EnvironmentJiraExtensionSettingArgs.builder()
                    .environmentType("unmapped")
                    .build())
                .jiraServiceManagementExtensionSettings(EnvironmentJiraServiceManagementExtensionSettingArgs.builder()
                    .isEnabled(false)
                    .build())
                .servicenowExtensionSettings(EnvironmentServicenowExtensionSettingArgs.builder()
                    .isEnabled(false)
                    .build())
                .useGuidedFailure(false)
                .build());
    
        }
    }
    
    resources:
      example:
        type: octopusdeploy:Environment
        properties:
          allowDynamicInfrastructure: false
          description: An environment for the development team.
          jiraExtensionSettings:
            - environmentType: unmapped
          jiraServiceManagementExtensionSettings:
            - isEnabled: false
          servicenowExtensionSettings:
            - isEnabled: false
          useGuidedFailure: false
    

    Create Environment Resource

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

    Constructor syntax

    new Environment(name: string, args?: EnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def Environment(resource_name: str,
                    args: Optional[EnvironmentArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Environment(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    allow_dynamic_infrastructure: Optional[bool] = None,
                    description: Optional[str] = None,
                    jira_extension_settings: Optional[Sequence[EnvironmentJiraExtensionSettingArgs]] = None,
                    jira_service_management_extension_settings: Optional[Sequence[EnvironmentJiraServiceManagementExtensionSettingArgs]] = None,
                    name: Optional[str] = None,
                    servicenow_extension_settings: Optional[Sequence[EnvironmentServicenowExtensionSettingArgs]] = None,
                    slug: Optional[str] = None,
                    sort_order: Optional[float] = None,
                    space_id: Optional[str] = None,
                    use_guided_failure: Optional[bool] = None)
    func NewEnvironment(ctx *Context, name string, args *EnvironmentArgs, opts ...ResourceOption) (*Environment, error)
    public Environment(string name, EnvironmentArgs? args = null, CustomResourceOptions? opts = null)
    public Environment(String name, EnvironmentArgs args)
    public Environment(String name, EnvironmentArgs args, CustomResourceOptions options)
    
    type: octopusdeploy:Environment
    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 EnvironmentArgs
    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 EnvironmentArgs
    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 EnvironmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EnvironmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EnvironmentArgs
    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 environmentResource = new Octopusdeploy.Environment("environmentResource", new()
    {
        AllowDynamicInfrastructure = false,
        Description = "string",
        JiraExtensionSettings = new[]
        {
            new Octopusdeploy.Inputs.EnvironmentJiraExtensionSettingArgs
            {
                EnvironmentType = "string",
            },
        },
        JiraServiceManagementExtensionSettings = new[]
        {
            new Octopusdeploy.Inputs.EnvironmentJiraServiceManagementExtensionSettingArgs
            {
                IsEnabled = false,
            },
        },
        Name = "string",
        ServicenowExtensionSettings = new[]
        {
            new Octopusdeploy.Inputs.EnvironmentServicenowExtensionSettingArgs
            {
                IsEnabled = false,
            },
        },
        Slug = "string",
        SortOrder = 0,
        SpaceId = "string",
        UseGuidedFailure = false,
    });
    
    example, err := octopusdeploy.NewEnvironment(ctx, "environmentResource", &octopusdeploy.EnvironmentArgs{
    	AllowDynamicInfrastructure: pulumi.Bool(false),
    	Description:                pulumi.String("string"),
    	JiraExtensionSettings: octopusdeploy.EnvironmentJiraExtensionSettingArray{
    		&octopusdeploy.EnvironmentJiraExtensionSettingArgs{
    			EnvironmentType: pulumi.String("string"),
    		},
    	},
    	JiraServiceManagementExtensionSettings: octopusdeploy.EnvironmentJiraServiceManagementExtensionSettingArray{
    		&octopusdeploy.EnvironmentJiraServiceManagementExtensionSettingArgs{
    			IsEnabled: pulumi.Bool(false),
    		},
    	},
    	Name: pulumi.String("string"),
    	ServicenowExtensionSettings: octopusdeploy.EnvironmentServicenowExtensionSettingArray{
    		&octopusdeploy.EnvironmentServicenowExtensionSettingArgs{
    			IsEnabled: pulumi.Bool(false),
    		},
    	},
    	Slug:             pulumi.String("string"),
    	SortOrder:        pulumi.Float64(0),
    	SpaceId:          pulumi.String("string"),
    	UseGuidedFailure: pulumi.Bool(false),
    })
    
    var environmentResource = new Environment("environmentResource", EnvironmentArgs.builder()
        .allowDynamicInfrastructure(false)
        .description("string")
        .jiraExtensionSettings(EnvironmentJiraExtensionSettingArgs.builder()
            .environmentType("string")
            .build())
        .jiraServiceManagementExtensionSettings(EnvironmentJiraServiceManagementExtensionSettingArgs.builder()
            .isEnabled(false)
            .build())
        .name("string")
        .servicenowExtensionSettings(EnvironmentServicenowExtensionSettingArgs.builder()
            .isEnabled(false)
            .build())
        .slug("string")
        .sortOrder(0)
        .spaceId("string")
        .useGuidedFailure(false)
        .build());
    
    environment_resource = octopusdeploy.Environment("environmentResource",
        allow_dynamic_infrastructure=False,
        description="string",
        jira_extension_settings=[{
            "environment_type": "string",
        }],
        jira_service_management_extension_settings=[{
            "is_enabled": False,
        }],
        name="string",
        servicenow_extension_settings=[{
            "is_enabled": False,
        }],
        slug="string",
        sort_order=0,
        space_id="string",
        use_guided_failure=False)
    
    const environmentResource = new octopusdeploy.Environment("environmentResource", {
        allowDynamicInfrastructure: false,
        description: "string",
        jiraExtensionSettings: [{
            environmentType: "string",
        }],
        jiraServiceManagementExtensionSettings: [{
            isEnabled: false,
        }],
        name: "string",
        servicenowExtensionSettings: [{
            isEnabled: false,
        }],
        slug: "string",
        sortOrder: 0,
        spaceId: "string",
        useGuidedFailure: false,
    });
    
    type: octopusdeploy:Environment
    properties:
        allowDynamicInfrastructure: false
        description: string
        jiraExtensionSettings:
            - environmentType: string
        jiraServiceManagementExtensionSettings:
            - isEnabled: false
        name: string
        servicenowExtensionSettings:
            - isEnabled: false
        slug: string
        sortOrder: 0
        spaceId: string
        useGuidedFailure: false
    

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

    AllowDynamicInfrastructure bool
    Description string
    The description of this environment.
    JiraExtensionSettings List<EnvironmentJiraExtensionSetting>
    Provides extension settings for the Jira integration for this environment.
    JiraServiceManagementExtensionSettings List<EnvironmentJiraServiceManagementExtensionSetting>
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    Name string
    The name of this resource.
    ServicenowExtensionSettings List<EnvironmentServicenowExtensionSetting>
    Provides extension settings for the ServiceNow integration for this environment.
    Slug string
    The unique slug of this environment
    SortOrder double
    The order number to sort an environment.
    SpaceId string
    The space ID associated with this environment.
    UseGuidedFailure bool
    AllowDynamicInfrastructure bool
    Description string
    The description of this environment.
    JiraExtensionSettings []EnvironmentJiraExtensionSettingArgs
    Provides extension settings for the Jira integration for this environment.
    JiraServiceManagementExtensionSettings []EnvironmentJiraServiceManagementExtensionSettingArgs
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    Name string
    The name of this resource.
    ServicenowExtensionSettings []EnvironmentServicenowExtensionSettingArgs
    Provides extension settings for the ServiceNow integration for this environment.
    Slug string
    The unique slug of this environment
    SortOrder float64
    The order number to sort an environment.
    SpaceId string
    The space ID associated with this environment.
    UseGuidedFailure bool
    allowDynamicInfrastructure Boolean
    description String
    The description of this environment.
    jiraExtensionSettings List<EnvironmentJiraExtensionSetting>
    Provides extension settings for the Jira integration for this environment.
    jiraServiceManagementExtensionSettings List<EnvironmentJiraServiceManagementExtensionSetting>
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name String
    The name of this resource.
    servicenowExtensionSettings List<EnvironmentServicenowExtensionSetting>
    Provides extension settings for the ServiceNow integration for this environment.
    slug String
    The unique slug of this environment
    sortOrder Double
    The order number to sort an environment.
    spaceId String
    The space ID associated with this environment.
    useGuidedFailure Boolean
    allowDynamicInfrastructure boolean
    description string
    The description of this environment.
    jiraExtensionSettings EnvironmentJiraExtensionSetting[]
    Provides extension settings for the Jira integration for this environment.
    jiraServiceManagementExtensionSettings EnvironmentJiraServiceManagementExtensionSetting[]
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name string
    The name of this resource.
    servicenowExtensionSettings EnvironmentServicenowExtensionSetting[]
    Provides extension settings for the ServiceNow integration for this environment.
    slug string
    The unique slug of this environment
    sortOrder number
    The order number to sort an environment.
    spaceId string
    The space ID associated with this environment.
    useGuidedFailure boolean
    allow_dynamic_infrastructure bool
    description str
    The description of this environment.
    jira_extension_settings Sequence[EnvironmentJiraExtensionSettingArgs]
    Provides extension settings for the Jira integration for this environment.
    jira_service_management_extension_settings Sequence[EnvironmentJiraServiceManagementExtensionSettingArgs]
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name str
    The name of this resource.
    servicenow_extension_settings Sequence[EnvironmentServicenowExtensionSettingArgs]
    Provides extension settings for the ServiceNow integration for this environment.
    slug str
    The unique slug of this environment
    sort_order float
    The order number to sort an environment.
    space_id str
    The space ID associated with this environment.
    use_guided_failure bool
    allowDynamicInfrastructure Boolean
    description String
    The description of this environment.
    jiraExtensionSettings List<Property Map>
    Provides extension settings for the Jira integration for this environment.
    jiraServiceManagementExtensionSettings List<Property Map>
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name String
    The name of this resource.
    servicenowExtensionSettings List<Property Map>
    Provides extension settings for the ServiceNow integration for this environment.
    slug String
    The unique slug of this environment
    sortOrder Number
    The order number to sort an environment.
    spaceId String
    The space ID associated with this environment.
    useGuidedFailure Boolean

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Environment 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 Environment Resource

    Get an existing Environment 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?: EnvironmentState, opts?: CustomResourceOptions): Environment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_dynamic_infrastructure: Optional[bool] = None,
            description: Optional[str] = None,
            jira_extension_settings: Optional[Sequence[EnvironmentJiraExtensionSettingArgs]] = None,
            jira_service_management_extension_settings: Optional[Sequence[EnvironmentJiraServiceManagementExtensionSettingArgs]] = None,
            name: Optional[str] = None,
            servicenow_extension_settings: Optional[Sequence[EnvironmentServicenowExtensionSettingArgs]] = None,
            slug: Optional[str] = None,
            sort_order: Optional[float] = None,
            space_id: Optional[str] = None,
            use_guided_failure: Optional[bool] = None) -> Environment
    func GetEnvironment(ctx *Context, name string, id IDInput, state *EnvironmentState, opts ...ResourceOption) (*Environment, error)
    public static Environment Get(string name, Input<string> id, EnvironmentState? state, CustomResourceOptions? opts = null)
    public static Environment get(String name, Output<String> id, EnvironmentState state, CustomResourceOptions options)
    resources:  _:    type: octopusdeploy:Environment    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:
    AllowDynamicInfrastructure bool
    Description string
    The description of this environment.
    JiraExtensionSettings List<EnvironmentJiraExtensionSetting>
    Provides extension settings for the Jira integration for this environment.
    JiraServiceManagementExtensionSettings List<EnvironmentJiraServiceManagementExtensionSetting>
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    Name string
    The name of this resource.
    ServicenowExtensionSettings List<EnvironmentServicenowExtensionSetting>
    Provides extension settings for the ServiceNow integration for this environment.
    Slug string
    The unique slug of this environment
    SortOrder double
    The order number to sort an environment.
    SpaceId string
    The space ID associated with this environment.
    UseGuidedFailure bool
    AllowDynamicInfrastructure bool
    Description string
    The description of this environment.
    JiraExtensionSettings []EnvironmentJiraExtensionSettingArgs
    Provides extension settings for the Jira integration for this environment.
    JiraServiceManagementExtensionSettings []EnvironmentJiraServiceManagementExtensionSettingArgs
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    Name string
    The name of this resource.
    ServicenowExtensionSettings []EnvironmentServicenowExtensionSettingArgs
    Provides extension settings for the ServiceNow integration for this environment.
    Slug string
    The unique slug of this environment
    SortOrder float64
    The order number to sort an environment.
    SpaceId string
    The space ID associated with this environment.
    UseGuidedFailure bool
    allowDynamicInfrastructure Boolean
    description String
    The description of this environment.
    jiraExtensionSettings List<EnvironmentJiraExtensionSetting>
    Provides extension settings for the Jira integration for this environment.
    jiraServiceManagementExtensionSettings List<EnvironmentJiraServiceManagementExtensionSetting>
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name String
    The name of this resource.
    servicenowExtensionSettings List<EnvironmentServicenowExtensionSetting>
    Provides extension settings for the ServiceNow integration for this environment.
    slug String
    The unique slug of this environment
    sortOrder Double
    The order number to sort an environment.
    spaceId String
    The space ID associated with this environment.
    useGuidedFailure Boolean
    allowDynamicInfrastructure boolean
    description string
    The description of this environment.
    jiraExtensionSettings EnvironmentJiraExtensionSetting[]
    Provides extension settings for the Jira integration for this environment.
    jiraServiceManagementExtensionSettings EnvironmentJiraServiceManagementExtensionSetting[]
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name string
    The name of this resource.
    servicenowExtensionSettings EnvironmentServicenowExtensionSetting[]
    Provides extension settings for the ServiceNow integration for this environment.
    slug string
    The unique slug of this environment
    sortOrder number
    The order number to sort an environment.
    spaceId string
    The space ID associated with this environment.
    useGuidedFailure boolean
    allow_dynamic_infrastructure bool
    description str
    The description of this environment.
    jira_extension_settings Sequence[EnvironmentJiraExtensionSettingArgs]
    Provides extension settings for the Jira integration for this environment.
    jira_service_management_extension_settings Sequence[EnvironmentJiraServiceManagementExtensionSettingArgs]
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name str
    The name of this resource.
    servicenow_extension_settings Sequence[EnvironmentServicenowExtensionSettingArgs]
    Provides extension settings for the ServiceNow integration for this environment.
    slug str
    The unique slug of this environment
    sort_order float
    The order number to sort an environment.
    space_id str
    The space ID associated with this environment.
    use_guided_failure bool
    allowDynamicInfrastructure Boolean
    description String
    The description of this environment.
    jiraExtensionSettings List<Property Map>
    Provides extension settings for the Jira integration for this environment.
    jiraServiceManagementExtensionSettings List<Property Map>
    Provides extension settings for the Jira Service Management (JSM) integration for this environment.
    name String
    The name of this resource.
    servicenowExtensionSettings List<Property Map>
    Provides extension settings for the ServiceNow integration for this environment.
    slug String
    The unique slug of this environment
    sortOrder Number
    The order number to sort an environment.
    spaceId String
    The space ID associated with this environment.
    useGuidedFailure Boolean

    Supporting Types

    EnvironmentJiraExtensionSetting, EnvironmentJiraExtensionSettingArgs

    EnvironmentType string
    The Jira environment type of this Octopus deployment environment. Valid values are "development", "production", "staging", "testing", "unmapped".
    EnvironmentType string
    The Jira environment type of this Octopus deployment environment. Valid values are "development", "production", "staging", "testing", "unmapped".
    environmentType String
    The Jira environment type of this Octopus deployment environment. Valid values are "development", "production", "staging", "testing", "unmapped".
    environmentType string
    The Jira environment type of this Octopus deployment environment. Valid values are "development", "production", "staging", "testing", "unmapped".
    environment_type str
    The Jira environment type of this Octopus deployment environment. Valid values are "development", "production", "staging", "testing", "unmapped".
    environmentType String
    The Jira environment type of this Octopus deployment environment. Valid values are "development", "production", "staging", "testing", "unmapped".

    EnvironmentJiraServiceManagementExtensionSetting, EnvironmentJiraServiceManagementExtensionSettingArgs

    IsEnabled bool
    Specifies whether or not this extension is enabled for this project.
    IsEnabled bool
    Specifies whether or not this extension is enabled for this project.
    isEnabled Boolean
    Specifies whether or not this extension is enabled for this project.
    isEnabled boolean
    Specifies whether or not this extension is enabled for this project.
    is_enabled bool
    Specifies whether or not this extension is enabled for this project.
    isEnabled Boolean
    Specifies whether or not this extension is enabled for this project.

    EnvironmentServicenowExtensionSetting, EnvironmentServicenowExtensionSettingArgs

    IsEnabled bool
    Specifies whether or not this extension is enabled for this project.
    IsEnabled bool
    Specifies whether or not this extension is enabled for this project.
    isEnabled Boolean
    Specifies whether or not this extension is enabled for this project.
    isEnabled boolean
    Specifies whether or not this extension is enabled for this project.
    is_enabled bool
    Specifies whether or not this extension is enabled for this project.
    isEnabled Boolean
    Specifies whether or not this extension is enabled for this project.

    Import

    $ pulumi import octopusdeploy:index/environment:Environment [options] octopusdeploy_environment.<name> <environment-id>
    

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

    Package Details

    Repository
    octopusdeploy octopusdeploylabs/terraform-provider-octopusdeploy
    License
    Notes
    This Pulumi package is based on the octopusdeploy Terraform Provider.
    octopusdeploy logo
    octopusdeploy 0.43.0 published on Thursday, Apr 17, 2025 by octopusdeploylabs