getNodeDriver
Use this data source to retrieve information about a Rancher v2 Node Driver resource.
Example Usage
using Pulumi;
using Rancher2 = Pulumi.Rancher2;
class MyStack : Stack
{
public MyStack()
{
var foo = Output.Create(Rancher2.GetNodeDriver.InvokeAsync(new Rancher2.GetNodeDriverArgs
{
Name = "foo",
}));
}
}
package main
import (
"github.com/pulumi/pulumi-rancher2/sdk/v2/go/rancher2"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := rancher2.LookupNodeDriver(ctx, &rancher2.LookupNodeDriverArgs{
Name: "foo",
}, nil)
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_rancher2 as rancher2
foo = rancher2.get_node_driver(name="foo")
import * as pulumi from "@pulumi/pulumi";
import * as rancher2 from "@pulumi/rancher2";
const foo = pulumi.output(rancher2.getNodeDriver({
name: "foo",
}, { async: true }));
Using getNodeDriver
function getNodeDriver(args: GetNodeDriverArgs, opts?: InvokeOptions): Promise<GetNodeDriverResult>
def get_node_driver(name: Optional[str] = None, url: Optional[str] = None, opts: Optional[InvokeOptions] = None) -> GetNodeDriverResult
func LookupNodeDriver(ctx *Context, args *LookupNodeDriverArgs, opts ...InvokeOption) (*LookupNodeDriverResult, error)
Note: This function is named
LookupNodeDriver
in the Go SDK.
public static class GetNodeDriver {
public static Task<GetNodeDriverResult> InvokeAsync(GetNodeDriverArgs args, InvokeOptions? opts = null)
}
The following arguments are supported:
getNodeDriver Result
The following output properties are available:
- Active bool
(Computed) Specify if the node driver state (bool)
- Annotations Dictionary<string, object>
(Computed) Annotations of the resource (map)
- Builtin bool
(Computed) Specify wheter the node driver is an internal cluster driver or not (bool)
- Checksum string
(Computed) Verify that the downloaded driver matches the expected checksum (string)
- Description string
(Computed) Description of the node driver (string)
- External
Id string (Computed) External ID (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels Dictionary<string, object>
(Computed) Labels of the resource (map)
- Name string
- Ui
Url string (Computed) The URL to load for customized Add Node screen for this driver (string)
- Url string
- Whitelist
Domains List<string> (Computed) Domains to whitelist for the ui (list)
- Active bool
(Computed) Specify if the node driver state (bool)
- Annotations map[string]interface{}
(Computed) Annotations of the resource (map)
- Builtin bool
(Computed) Specify wheter the node driver is an internal cluster driver or not (bool)
- Checksum string
(Computed) Verify that the downloaded driver matches the expected checksum (string)
- Description string
(Computed) Description of the node driver (string)
- External
Id string (Computed) External ID (string)
- Id string
The provider-assigned unique ID for this managed resource.
- Labels map[string]interface{}
(Computed) Labels of the resource (map)
- Name string
- Ui
Url string (Computed) The URL to load for customized Add Node screen for this driver (string)
- Url string
- Whitelist
Domains []string (Computed) Domains to whitelist for the ui (list)
- active boolean
(Computed) Specify if the node driver state (bool)
- annotations {[key: string]: any}
(Computed) Annotations of the resource (map)
- builtin boolean
(Computed) Specify wheter the node driver is an internal cluster driver or not (bool)
- checksum string
(Computed) Verify that the downloaded driver matches the expected checksum (string)
- description string
(Computed) Description of the node driver (string)
- external
Id string (Computed) External ID (string)
- id string
The provider-assigned unique ID for this managed resource.
- labels {[key: string]: any}
(Computed) Labels of the resource (map)
- name string
- ui
Url string (Computed) The URL to load for customized Add Node screen for this driver (string)
- url string
- whitelist
Domains string[] (Computed) Domains to whitelist for the ui (list)
- active bool
(Computed) Specify if the node driver state (bool)
- annotations Mapping[str, Any]
(Computed) Annotations of the resource (map)
- builtin bool
(Computed) Specify wheter the node driver is an internal cluster driver or not (bool)
- checksum str
(Computed) Verify that the downloaded driver matches the expected checksum (string)
- description str
(Computed) Description of the node driver (string)
- external_
id str (Computed) External ID (string)
- id str
The provider-assigned unique ID for this managed resource.
- labels Mapping[str, Any]
(Computed) Labels of the resource (map)
- name str
- ui_
url str (Computed) The URL to load for customized Add Node screen for this driver (string)
- url str
- whitelist_
domains Sequence[str] (Computed) Domains to whitelist for the ui (list)
Package Details
- Repository
- https://github.com/pulumi/pulumi-rancher2
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rancher2
Terraform Provider.