1. Packages
  2. OVH
  3. API Docs
  4. CloudProject
  5. Rancher
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

ovh.CloudProject.Rancher

Explore with Pulumi AI

ovh logo
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

    Manage a Rancher service in a public cloud project.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ovh from "@ovhcloud/pulumi-ovh";
    
    const rancher = new ovh.cloudproject.Rancher("rancher", {
        projectId: "<public cloud project ID>",
        targetSpec: {
            name: "MyRancher",
            plan: "STANDARD",
        },
    });
    
    import pulumi
    import pulumi_ovh as ovh
    
    rancher = ovh.cloud_project.Rancher("rancher",
        project_id="<public cloud project ID>",
        target_spec={
            "name": "MyRancher",
            "plan": "STANDARD",
        })
    
    package main
    
    import (
    	"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/cloudproject"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudproject.NewRancher(ctx, "rancher", &cloudproject.RancherArgs{
    			ProjectId: pulumi.String("<public cloud project ID>"),
    			TargetSpec: &cloudproject.RancherTargetSpecArgs{
    				Name: pulumi.String("MyRancher"),
    				Plan: pulumi.String("STANDARD"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ovh = Pulumi.Ovh;
    
    return await Deployment.RunAsync(() => 
    {
        var rancher = new Ovh.CloudProject.Rancher("rancher", new()
        {
            ProjectId = "<public cloud project ID>",
            TargetSpec = new Ovh.CloudProject.Inputs.RancherTargetSpecArgs
            {
                Name = "MyRancher",
                Plan = "STANDARD",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ovh.CloudProject.Rancher;
    import com.pulumi.ovh.CloudProject.RancherArgs;
    import com.pulumi.ovh.CloudProject.inputs.RancherTargetSpecArgs;
    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 rancher = new Rancher("rancher", RancherArgs.builder()
                .projectId("<public cloud project ID>")
                .targetSpec(RancherTargetSpecArgs.builder()
                    .name("MyRancher")
                    .plan("STANDARD")
                    .build())
                .build());
    
        }
    }
    
    resources:
      rancher:
        type: ovh:CloudProject:Rancher
        properties:
          projectId: <public cloud project ID>
          targetSpec:
            name: MyRancher
            plan: STANDARD
    

    Create Rancher Resource

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

    Constructor syntax

    new Rancher(name: string, args: RancherArgs, opts?: CustomResourceOptions);
    @overload
    def Rancher(resource_name: str,
                args: RancherArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Rancher(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                project_id: Optional[str] = None,
                target_spec: Optional[_cloudproject.RancherTargetSpecArgs] = None)
    func NewRancher(ctx *Context, name string, args RancherArgs, opts ...ResourceOption) (*Rancher, error)
    public Rancher(string name, RancherArgs args, CustomResourceOptions? opts = null)
    public Rancher(String name, RancherArgs args)
    public Rancher(String name, RancherArgs args, CustomResourceOptions options)
    
    type: ovh:CloudProject:Rancher
    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 RancherArgs
    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 RancherArgs
    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 RancherArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RancherArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RancherArgs
    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 rancherResource = new Ovh.CloudProject.Rancher("rancherResource", new()
    {
        ProjectId = "string",
        TargetSpec = new Ovh.CloudProject.Inputs.RancherTargetSpecArgs
        {
            Name = "string",
            Plan = "string",
            IpRestrictions = new[]
            {
                new Ovh.CloudProject.Inputs.RancherTargetSpecIpRestrictionArgs
                {
                    CidrBlock = "string",
                    Description = "string",
                },
            },
            Version = "string",
        },
    });
    
    example, err := CloudProject.NewRancher(ctx, "rancherResource", &CloudProject.RancherArgs{
    	ProjectId: pulumi.String("string"),
    	TargetSpec: &cloudproject.RancherTargetSpecArgs{
    		Name: pulumi.String("string"),
    		Plan: pulumi.String("string"),
    		IpRestrictions: cloudproject.RancherTargetSpecIpRestrictionArray{
    			&cloudproject.RancherTargetSpecIpRestrictionArgs{
    				CidrBlock:   pulumi.String("string"),
    				Description: pulumi.String("string"),
    			},
    		},
    		Version: pulumi.String("string"),
    	},
    })
    
    var rancherResource = new Rancher("rancherResource", RancherArgs.builder()
        .projectId("string")
        .targetSpec(RancherTargetSpecArgs.builder()
            .name("string")
            .plan("string")
            .ipRestrictions(RancherTargetSpecIpRestrictionArgs.builder()
                .cidrBlock("string")
                .description("string")
                .build())
            .version("string")
            .build())
        .build());
    
    rancher_resource = ovh.cloud_project.Rancher("rancherResource",
        project_id="string",
        target_spec={
            "name": "string",
            "plan": "string",
            "ip_restrictions": [{
                "cidr_block": "string",
                "description": "string",
            }],
            "version": "string",
        })
    
    const rancherResource = new ovh.cloudproject.Rancher("rancherResource", {
        projectId: "string",
        targetSpec: {
            name: "string",
            plan: "string",
            ipRestrictions: [{
                cidrBlock: "string",
                description: "string",
            }],
            version: "string",
        },
    });
    
    type: ovh:CloudProject:Rancher
    properties:
        projectId: string
        targetSpec:
            ipRestrictions:
                - cidrBlock: string
                  description: string
            name: string
            plan: string
            version: string
    

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

    ProjectId string
    Project ID
    TargetSpec RancherTargetSpec
    Target specification for the managed Rancher service
    ProjectId string
    Project ID
    TargetSpec RancherTargetSpecArgs
    Target specification for the managed Rancher service
    projectId String
    Project ID
    targetSpec RancherTargetSpec
    Target specification for the managed Rancher service
    projectId string
    Project ID
    targetSpec RancherTargetSpec
    Target specification for the managed Rancher service
    project_id str
    Project ID
    target_spec cloudproject.RancherTargetSpecArgs
    Target specification for the managed Rancher service
    projectId String
    Project ID
    targetSpec Property Map
    Target specification for the managed Rancher service

    Outputs

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

    CreatedAt string
    Date of the managed Rancher service creation
    CurrentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    CurrentTasks List<RancherCurrentTask>
    Asynchronous operations ongoing on the managed Rancher service
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceStatus string
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    UpdatedAt string
    Date of the last managed Rancher service update
    CreatedAt string
    Date of the managed Rancher service creation
    CurrentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    CurrentTasks []RancherCurrentTask
    Asynchronous operations ongoing on the managed Rancher service
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceStatus string
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    UpdatedAt string
    Date of the last managed Rancher service update
    createdAt String
    Date of the managed Rancher service creation
    currentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    currentTasks List<RancherCurrentTask>
    Asynchronous operations ongoing on the managed Rancher service
    id String
    The provider-assigned unique ID for this managed resource.
    resourceStatus String
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    updatedAt String
    Date of the last managed Rancher service update
    createdAt string
    Date of the managed Rancher service creation
    currentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    currentTasks RancherCurrentTask[]
    Asynchronous operations ongoing on the managed Rancher service
    id string
    The provider-assigned unique ID for this managed resource.
    resourceStatus string
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    updatedAt string
    Date of the last managed Rancher service update
    created_at str
    Date of the managed Rancher service creation
    current_state cloudproject.RancherCurrentState
    Current configuration applied to the managed Rancher service
    current_tasks Sequence[cloudproject.RancherCurrentTask]
    Asynchronous operations ongoing on the managed Rancher service
    id str
    The provider-assigned unique ID for this managed resource.
    resource_status str
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    updated_at str
    Date of the last managed Rancher service update
    createdAt String
    Date of the managed Rancher service creation
    currentState Property Map
    Current configuration applied to the managed Rancher service
    currentTasks List<Property Map>
    Asynchronous operations ongoing on the managed Rancher service
    id String
    The provider-assigned unique ID for this managed resource.
    resourceStatus String
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    updatedAt String
    Date of the last managed Rancher service update

    Look up Existing Rancher Resource

    Get an existing Rancher 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?: RancherState, opts?: CustomResourceOptions): Rancher
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            current_state: Optional[_cloudproject.RancherCurrentStateArgs] = None,
            current_tasks: Optional[Sequence[_cloudproject.RancherCurrentTaskArgs]] = None,
            project_id: Optional[str] = None,
            resource_status: Optional[str] = None,
            target_spec: Optional[_cloudproject.RancherTargetSpecArgs] = None,
            updated_at: Optional[str] = None) -> Rancher
    func GetRancher(ctx *Context, name string, id IDInput, state *RancherState, opts ...ResourceOption) (*Rancher, error)
    public static Rancher Get(string name, Input<string> id, RancherState? state, CustomResourceOptions? opts = null)
    public static Rancher get(String name, Output<String> id, RancherState state, CustomResourceOptions options)
    resources:  _:    type: ovh:CloudProject:Rancher    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:
    CreatedAt string
    Date of the managed Rancher service creation
    CurrentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    CurrentTasks List<RancherCurrentTask>
    Asynchronous operations ongoing on the managed Rancher service
    ProjectId string
    Project ID
    ResourceStatus string
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    TargetSpec RancherTargetSpec
    Target specification for the managed Rancher service
    UpdatedAt string
    Date of the last managed Rancher service update
    CreatedAt string
    Date of the managed Rancher service creation
    CurrentState RancherCurrentStateArgs
    Current configuration applied to the managed Rancher service
    CurrentTasks []RancherCurrentTaskArgs
    Asynchronous operations ongoing on the managed Rancher service
    ProjectId string
    Project ID
    ResourceStatus string
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    TargetSpec RancherTargetSpecArgs
    Target specification for the managed Rancher service
    UpdatedAt string
    Date of the last managed Rancher service update
    createdAt String
    Date of the managed Rancher service creation
    currentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    currentTasks List<RancherCurrentTask>
    Asynchronous operations ongoing on the managed Rancher service
    projectId String
    Project ID
    resourceStatus String
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    targetSpec RancherTargetSpec
    Target specification for the managed Rancher service
    updatedAt String
    Date of the last managed Rancher service update
    createdAt string
    Date of the managed Rancher service creation
    currentState RancherCurrentState
    Current configuration applied to the managed Rancher service
    currentTasks RancherCurrentTask[]
    Asynchronous operations ongoing on the managed Rancher service
    projectId string
    Project ID
    resourceStatus string
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    targetSpec RancherTargetSpec
    Target specification for the managed Rancher service
    updatedAt string
    Date of the last managed Rancher service update
    created_at str
    Date of the managed Rancher service creation
    current_state cloudproject.RancherCurrentStateArgs
    Current configuration applied to the managed Rancher service
    current_tasks Sequence[cloudproject.RancherCurrentTaskArgs]
    Asynchronous operations ongoing on the managed Rancher service
    project_id str
    Project ID
    resource_status str
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    target_spec cloudproject.RancherTargetSpecArgs
    Target specification for the managed Rancher service
    updated_at str
    Date of the last managed Rancher service update
    createdAt String
    Date of the managed Rancher service creation
    currentState Property Map
    Current configuration applied to the managed Rancher service
    currentTasks List<Property Map>
    Asynchronous operations ongoing on the managed Rancher service
    projectId String
    Project ID
    resourceStatus String
    Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in READY status
    targetSpec Property Map
    Target specification for the managed Rancher service
    updatedAt String
    Date of the last managed Rancher service update

    Supporting Types

    RancherCurrentState, RancherCurrentStateArgs

    BootstrapPassword string
    Bootstrap password of the managed Rancher service, returned only on creation
    IpRestrictions List<RancherCurrentStateIpRestriction>
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    Name string
    Name of the managed Rancher service
    Networking RancherCurrentStateNetworking
    Networking properties of a managed Rancher service
    Plan string
    Plan of the managed Rancher service
    Region string
    Region of the managed Rancher service
    Url string
    URL of the managed Rancher service
    Usage RancherCurrentStateUsage
    Latest metrics regarding the usage of the managed Rancher service
    Version string
    Version of the managed Rancher service
    BootstrapPassword string
    Bootstrap password of the managed Rancher service, returned only on creation
    IpRestrictions []RancherCurrentStateIpRestriction
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    Name string
    Name of the managed Rancher service
    Networking RancherCurrentStateNetworking
    Networking properties of a managed Rancher service
    Plan string
    Plan of the managed Rancher service
    Region string
    Region of the managed Rancher service
    Url string
    URL of the managed Rancher service
    Usage RancherCurrentStateUsage
    Latest metrics regarding the usage of the managed Rancher service
    Version string
    Version of the managed Rancher service
    bootstrapPassword String
    Bootstrap password of the managed Rancher service, returned only on creation
    ipRestrictions List<RancherCurrentStateIpRestriction>
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    name String
    Name of the managed Rancher service
    networking RancherCurrentStateNetworking
    Networking properties of a managed Rancher service
    plan String
    Plan of the managed Rancher service
    region String
    Region of the managed Rancher service
    url String
    URL of the managed Rancher service
    usage RancherCurrentStateUsage
    Latest metrics regarding the usage of the managed Rancher service
    version String
    Version of the managed Rancher service
    bootstrapPassword string
    Bootstrap password of the managed Rancher service, returned only on creation
    ipRestrictions RancherCurrentStateIpRestriction[]
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    name string
    Name of the managed Rancher service
    networking RancherCurrentStateNetworking
    Networking properties of a managed Rancher service
    plan string
    Plan of the managed Rancher service
    region string
    Region of the managed Rancher service
    url string
    URL of the managed Rancher service
    usage RancherCurrentStateUsage
    Latest metrics regarding the usage of the managed Rancher service
    version string
    Version of the managed Rancher service
    bootstrap_password str
    Bootstrap password of the managed Rancher service, returned only on creation
    ip_restrictions Sequence[cloudproject.RancherCurrentStateIpRestriction]
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    name str
    Name of the managed Rancher service
    networking cloudproject.RancherCurrentStateNetworking
    Networking properties of a managed Rancher service
    plan str
    Plan of the managed Rancher service
    region str
    Region of the managed Rancher service
    url str
    URL of the managed Rancher service
    usage cloudproject.RancherCurrentStateUsage
    Latest metrics regarding the usage of the managed Rancher service
    version str
    Version of the managed Rancher service
    bootstrapPassword String
    Bootstrap password of the managed Rancher service, returned only on creation
    ipRestrictions List<Property Map>
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    name String
    Name of the managed Rancher service
    networking Property Map
    Networking properties of a managed Rancher service
    plan String
    Plan of the managed Rancher service
    region String
    Region of the managed Rancher service
    url String
    URL of the managed Rancher service
    usage Property Map
    Latest metrics regarding the usage of the managed Rancher service
    version String
    Version of the managed Rancher service

    RancherCurrentStateIpRestriction, RancherCurrentStateIpRestrictionArgs

    CidrBlock string
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    Description string
    Description of the allowed CIDR block
    CidrBlock string
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    Description string
    Description of the allowed CIDR block
    cidrBlock String
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description String
    Description of the allowed CIDR block
    cidrBlock string
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description string
    Description of the allowed CIDR block
    cidr_block str
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description str
    Description of the allowed CIDR block
    cidrBlock String
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description String
    Description of the allowed CIDR block

    RancherCurrentStateNetworking, RancherCurrentStateNetworkingArgs

    EgressCidrBlocks List<string>
    Specifies the CIDR ranges for egress IP addresses used by Rancher. Ensure these ranges are allowed in any IP restrictions for services that Rancher will access.
    EgressCidrBlocks []string
    Specifies the CIDR ranges for egress IP addresses used by Rancher. Ensure these ranges are allowed in any IP restrictions for services that Rancher will access.
    egressCidrBlocks List<String>
    Specifies the CIDR ranges for egress IP addresses used by Rancher. Ensure these ranges are allowed in any IP restrictions for services that Rancher will access.
    egressCidrBlocks string[]
    Specifies the CIDR ranges for egress IP addresses used by Rancher. Ensure these ranges are allowed in any IP restrictions for services that Rancher will access.
    egress_cidr_blocks Sequence[str]
    Specifies the CIDR ranges for egress IP addresses used by Rancher. Ensure these ranges are allowed in any IP restrictions for services that Rancher will access.
    egressCidrBlocks List<String>
    Specifies the CIDR ranges for egress IP addresses used by Rancher. Ensure these ranges are allowed in any IP restrictions for services that Rancher will access.

    RancherCurrentStateUsage, RancherCurrentStateUsageArgs

    Datetime string
    Date of the sample
    OrchestratedVcpus double
    Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
    Datetime string
    Date of the sample
    OrchestratedVcpus float64
    Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
    datetime String
    Date of the sample
    orchestratedVcpus Double
    Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
    datetime string
    Date of the sample
    orchestratedVcpus number
    Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
    datetime str
    Date of the sample
    orchestrated_vcpus float
    Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
    datetime String
    Date of the sample
    orchestratedVcpus Number
    Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters

    RancherCurrentTask, RancherCurrentTaskArgs

    Id string
    Identifier of the current task
    Link string
    Link to the task details
    Status string
    Current global status of the current task
    Type string
    Type of the current task
    Id string
    Identifier of the current task
    Link string
    Link to the task details
    Status string
    Current global status of the current task
    Type string
    Type of the current task
    id String
    Identifier of the current task
    link String
    Link to the task details
    status String
    Current global status of the current task
    type String
    Type of the current task
    id string
    Identifier of the current task
    link string
    Link to the task details
    status string
    Current global status of the current task
    type string
    Type of the current task
    id str
    Identifier of the current task
    link str
    Link to the task details
    status str
    Current global status of the current task
    type str
    Type of the current task
    id String
    Identifier of the current task
    link String
    Link to the task details
    status String
    Current global status of the current task
    type String
    Type of the current task

    RancherTargetSpec, RancherTargetSpecArgs

    Name string
    Name of the managed Rancher service
    Plan string
    Plan of the managed Rancher service. Available plans for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/plan
    IpRestrictions List<RancherTargetSpecIpRestriction>
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    Version string
    Version of the managed Rancher service. Available versions for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/version. Default is the latest version.
    Name string
    Name of the managed Rancher service
    Plan string
    Plan of the managed Rancher service. Available plans for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/plan
    IpRestrictions []RancherTargetSpecIpRestriction
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    Version string
    Version of the managed Rancher service. Available versions for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/version. Default is the latest version.
    name String
    Name of the managed Rancher service
    plan String
    Plan of the managed Rancher service. Available plans for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/plan
    ipRestrictions List<RancherTargetSpecIpRestriction>
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    version String
    Version of the managed Rancher service. Available versions for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/version. Default is the latest version.
    name string
    Name of the managed Rancher service
    plan string
    Plan of the managed Rancher service. Available plans for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/plan
    ipRestrictions RancherTargetSpecIpRestriction[]
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    version string
    Version of the managed Rancher service. Available versions for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/version. Default is the latest version.
    name str
    Name of the managed Rancher service
    plan str
    Plan of the managed Rancher service. Available plans for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/plan
    ip_restrictions Sequence[cloudproject.RancherTargetSpecIpRestriction]
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    version str
    Version of the managed Rancher service. Available versions for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/version. Default is the latest version.
    name String
    Name of the managed Rancher service
    plan String
    Plan of the managed Rancher service. Available plans for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/plan
    ipRestrictions List<Property Map>
    List of allowed CIDR blocks for a managed Rancher service's IP restrictions. When empty, any IP is allowed
    version String
    Version of the managed Rancher service. Available versions for an existing managed Rancher can be retrieved using GET /rancher/rancherID/capabilities/version. Default is the latest version.

    RancherTargetSpecIpRestriction, RancherTargetSpecIpRestrictionArgs

    CidrBlock string
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    Description string
    Description of the allowed CIDR block
    CidrBlock string
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    Description string
    Description of the allowed CIDR block
    cidrBlock String
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description String
    Description of the allowed CIDR block
    cidrBlock string
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description string
    Description of the allowed CIDR block
    cidr_block str
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description str
    Description of the allowed CIDR block
    cidrBlock String
    Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
    description String
    Description of the allowed CIDR block

    Import

    A share in a public cloud project can be imported using the project_id and id attributes.

    Using the following configuration:

    hcl

    import {

    id = “<project_id>/

    to = ovh_cloud_project_rancher.rancher

    }

    You can then run:

    bash

    $ pulumi preview -generate-config-out=rancher.tf

    $ pulumi up

    The file rancher.tf will then contain the imported resource’s configuration, that can be copied next to the import block above.

    See https://developer.hashicorp.com/terraform/language/import/generating-configuration for more details.

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

    Package Details

    Repository
    ovh ovh/pulumi-ovh
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ovh Terraform Provider.
    ovh logo
    OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud