ovh.CloudProject.Rancher
Explore with Pulumi AI
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:
- Project
Id string - Project ID
- Target
Spec RancherTarget Spec - Target specification for the managed Rancher service
- Project
Id string - Project ID
- Target
Spec RancherTarget Spec Args - Target specification for the managed Rancher service
- project
Id String - Project ID
- target
Spec RancherTarget Spec - Target specification for the managed Rancher service
- project
Id string - Project ID
- target
Spec RancherTarget Spec - Target specification for the managed Rancher service
- project_
id str - Project ID
- target_
spec cloudproject.Rancher Target Spec Args - Target specification for the managed Rancher service
- project
Id String - Project ID
- target
Spec 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:
- Created
At string - Date of the managed Rancher service creation
- Current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- Current
Tasks List<RancherCurrent Task> - Asynchronous operations ongoing on the managed Rancher service
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Status string - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - Updated
At string - Date of the last managed Rancher service update
- Created
At string - Date of the managed Rancher service creation
- Current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- Current
Tasks []RancherCurrent Task - Asynchronous operations ongoing on the managed Rancher service
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Status string - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - Updated
At string - Date of the last managed Rancher service update
- created
At String - Date of the managed Rancher service creation
- current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- current
Tasks List<RancherCurrent Task> - Asynchronous operations ongoing on the managed Rancher service
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Status String - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - updated
At String - Date of the last managed Rancher service update
- created
At string - Date of the managed Rancher service creation
- current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- current
Tasks RancherCurrent Task[] - Asynchronous operations ongoing on the managed Rancher service
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Status string - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - updated
At string - Date of the last managed Rancher service update
- created_
at str - Date of the managed Rancher service creation
- current_
state cloudproject.Rancher Current State - Current configuration applied to the managed Rancher service
- current_
tasks Sequence[cloudproject.Rancher Current Task] - 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
- created
At String - Date of the managed Rancher service creation
- current
State Property Map - Current configuration applied to the managed Rancher service
- current
Tasks List<Property Map> - Asynchronous operations ongoing on the managed Rancher service
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Status String - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - updated
At 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.
- Created
At string - Date of the managed Rancher service creation
- Current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- Current
Tasks List<RancherCurrent Task> - Asynchronous operations ongoing on the managed Rancher service
- Project
Id string - Project ID
- Resource
Status string - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - Target
Spec RancherTarget Spec - Target specification for the managed Rancher service
- Updated
At string - Date of the last managed Rancher service update
- Created
At string - Date of the managed Rancher service creation
- Current
State RancherCurrent State Args - Current configuration applied to the managed Rancher service
- Current
Tasks []RancherCurrent Task Args - Asynchronous operations ongoing on the managed Rancher service
- Project
Id string - Project ID
- Resource
Status string - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - Target
Spec RancherTarget Spec Args - Target specification for the managed Rancher service
- Updated
At string - Date of the last managed Rancher service update
- created
At String - Date of the managed Rancher service creation
- current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- current
Tasks List<RancherCurrent Task> - Asynchronous operations ongoing on the managed Rancher service
- project
Id String - Project ID
- resource
Status String - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - target
Spec RancherTarget Spec - Target specification for the managed Rancher service
- updated
At String - Date of the last managed Rancher service update
- created
At string - Date of the managed Rancher service creation
- current
State RancherCurrent State - Current configuration applied to the managed Rancher service
- current
Tasks RancherCurrent Task[] - Asynchronous operations ongoing on the managed Rancher service
- project
Id string - Project ID
- resource
Status string - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - target
Spec RancherTarget Spec - Target specification for the managed Rancher service
- updated
At string - Date of the last managed Rancher service update
- created_
at str - Date of the managed Rancher service creation
- current_
state cloudproject.Rancher Current State Args - Current configuration applied to the managed Rancher service
- current_
tasks Sequence[cloudproject.Rancher Current Task Args] - 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.Rancher Target Spec Args - Target specification for the managed Rancher service
- updated_
at str - Date of the last managed Rancher service update
- created
At String - Date of the managed Rancher service creation
- current
State Property Map - Current configuration applied to the managed Rancher service
- current
Tasks List<Property Map> - Asynchronous operations ongoing on the managed Rancher service
- project
Id String - Project ID
- resource
Status String - Reflects the readiness of the managed Rancher service. A new target specification request will be accepted only in
READY
status - target
Spec Property Map - Target specification for the managed Rancher service
- updated
At String - Date of the last managed Rancher service update
Supporting Types
RancherCurrentState, RancherCurrentStateArgs
- Bootstrap
Password string - Bootstrap password of the managed Rancher service, returned only on creation
- Ip
Restrictions List<RancherCurrent State Ip Restriction> - 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
Rancher
Current State Networking - 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
Rancher
Current State Usage - Latest metrics regarding the usage of the managed Rancher service
- Version string
- Version of the managed Rancher service
- Bootstrap
Password string - Bootstrap password of the managed Rancher service, returned only on creation
- Ip
Restrictions []RancherCurrent State Ip Restriction - 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
Rancher
Current State Networking - 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
Rancher
Current State Usage - Latest metrics regarding the usage of the managed Rancher service
- Version string
- Version of the managed Rancher service
- bootstrap
Password String - Bootstrap password of the managed Rancher service, returned only on creation
- ip
Restrictions List<RancherCurrent State Ip Restriction> - 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
Rancher
Current State Networking - 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
Rancher
Current State Usage - Latest metrics regarding the usage of the managed Rancher service
- version String
- Version of the managed Rancher service
- bootstrap
Password string - Bootstrap password of the managed Rancher service, returned only on creation
- ip
Restrictions RancherCurrent State Ip Restriction[] - 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
Rancher
Current State Networking - 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
Rancher
Current State Usage - 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.Rancher Current State Ip Restriction] - 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.
Rancher Current State Networking - 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.
Rancher Current State Usage - Latest metrics regarding the usage of the managed Rancher service
- version str
- Version of the managed Rancher service
- bootstrap
Password String - Bootstrap password of the managed Rancher service, returned only on creation
- ip
Restrictions 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
- Cidr
Block string - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- Description string
- Description of the allowed CIDR block
- Cidr
Block string - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- Description string
- Description of the allowed CIDR block
- cidr
Block String - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- description String
- Description of the allowed CIDR block
- cidr
Block 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
- cidr
Block String - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- description String
- Description of the allowed CIDR block
RancherCurrentStateNetworking, RancherCurrentStateNetworkingArgs
- Egress
Cidr List<string>Blocks - 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 []stringBlocks - 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 List<String>Blocks - 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 string[]Blocks - 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_ Sequence[str]blocks - 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 List<String>Blocks - 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
- Orchestrated
Vcpus double - Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
- Datetime string
- Date of the sample
- Orchestrated
Vcpus float64 - Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
- datetime String
- Date of the sample
- orchestrated
Vcpus Double - Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
- datetime string
- Date of the sample
- orchestrated
Vcpus 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
- orchestrated
Vcpus Number - Total number of vCPUs orchestrated by the managed Rancher service through the downstream clusters
RancherCurrentTask, RancherCurrentTaskArgs
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
- Ip
Restrictions List<RancherTarget Spec Ip Restriction> - 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
- Ip
Restrictions []RancherTarget Spec Ip Restriction - 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
- ip
Restrictions List<RancherTarget Spec Ip Restriction> - 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
- ip
Restrictions RancherTarget Spec Ip Restriction[] - 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.Rancher Target Spec Ip Restriction] - 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
- ip
Restrictions 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
- Cidr
Block string - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- Description string
- Description of the allowed CIDR block
- Cidr
Block string - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- Description string
- Description of the allowed CIDR block
- cidr
Block String - Allowed CIDR block (/subnet is optional, if unspecified then /32 will be used)
- description String
- Description of the allowed CIDR block
- cidr
Block 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
- cidr
Block 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.