KerberosServerProfile resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const scmKerberosServerProfile1 = new scm.KerberosServerProfile("scm_kerberos_server_profile_1", {
folder: "All",
name: "kerberos-server-prof-1",
servers: [{
name: "server_a",
host: "$test_ip",
}],
});
const scmKerberosServerProfile2 = new scm.KerberosServerProfile("scm_kerberos_server_profile_2", {
folder: "All",
name: "kerberos-server-prof-2",
servers: [{
name: "server_a",
host: "host_a",
port: 120,
}],
});
const scmKerberosServerProfile3 = new scm.KerberosServerProfile("scm_kerberos_server_profile_3", {
folder: "All",
name: "kerberos-server-prof-3",
servers: [
{
name: "server_a",
host: "host_a",
port: 1,
},
{
name: "server_b",
host: "host_b",
port: 65535,
},
{
name: "server_c",
host: "192.100.50.135",
port: 45,
},
],
});
import pulumi
import pulumi_scm as scm
scm_kerberos_server_profile1 = scm.KerberosServerProfile("scm_kerberos_server_profile_1",
folder="All",
name="kerberos-server-prof-1",
servers=[{
"name": "server_a",
"host": "$test_ip",
}])
scm_kerberos_server_profile2 = scm.KerberosServerProfile("scm_kerberos_server_profile_2",
folder="All",
name="kerberos-server-prof-2",
servers=[{
"name": "server_a",
"host": "host_a",
"port": 120,
}])
scm_kerberos_server_profile3 = scm.KerberosServerProfile("scm_kerberos_server_profile_3",
folder="All",
name="kerberos-server-prof-3",
servers=[
{
"name": "server_a",
"host": "host_a",
"port": 1,
},
{
"name": "server_b",
"host": "host_b",
"port": 65535,
},
{
"name": "server_c",
"host": "192.100.50.135",
"port": 45,
},
])
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scm.NewKerberosServerProfile(ctx, "scm_kerberos_server_profile_1", &scm.KerberosServerProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("kerberos-server-prof-1"),
Servers: scm.KerberosServerProfileServerArray{
&scm.KerberosServerProfileServerArgs{
Name: pulumi.String("server_a"),
Host: pulumi.String("$test_ip"),
},
},
})
if err != nil {
return err
}
_, err = scm.NewKerberosServerProfile(ctx, "scm_kerberos_server_profile_2", &scm.KerberosServerProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("kerberos-server-prof-2"),
Servers: scm.KerberosServerProfileServerArray{
&scm.KerberosServerProfileServerArgs{
Name: pulumi.String("server_a"),
Host: pulumi.String("host_a"),
Port: pulumi.Int(120),
},
},
})
if err != nil {
return err
}
_, err = scm.NewKerberosServerProfile(ctx, "scm_kerberos_server_profile_3", &scm.KerberosServerProfileArgs{
Folder: pulumi.String("All"),
Name: pulumi.String("kerberos-server-prof-3"),
Servers: scm.KerberosServerProfileServerArray{
&scm.KerberosServerProfileServerArgs{
Name: pulumi.String("server_a"),
Host: pulumi.String("host_a"),
Port: pulumi.Int(1),
},
&scm.KerberosServerProfileServerArgs{
Name: pulumi.String("server_b"),
Host: pulumi.String("host_b"),
Port: pulumi.Int(65535),
},
&scm.KerberosServerProfileServerArgs{
Name: pulumi.String("server_c"),
Host: pulumi.String("192.100.50.135"),
Port: pulumi.Int(45),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var scmKerberosServerProfile1 = new Scm.KerberosServerProfile("scm_kerberos_server_profile_1", new()
{
Folder = "All",
Name = "kerberos-server-prof-1",
Servers = new[]
{
new Scm.Inputs.KerberosServerProfileServerArgs
{
Name = "server_a",
Host = "$test_ip",
},
},
});
var scmKerberosServerProfile2 = new Scm.KerberosServerProfile("scm_kerberos_server_profile_2", new()
{
Folder = "All",
Name = "kerberos-server-prof-2",
Servers = new[]
{
new Scm.Inputs.KerberosServerProfileServerArgs
{
Name = "server_a",
Host = "host_a",
Port = 120,
},
},
});
var scmKerberosServerProfile3 = new Scm.KerberosServerProfile("scm_kerberos_server_profile_3", new()
{
Folder = "All",
Name = "kerberos-server-prof-3",
Servers = new[]
{
new Scm.Inputs.KerberosServerProfileServerArgs
{
Name = "server_a",
Host = "host_a",
Port = 1,
},
new Scm.Inputs.KerberosServerProfileServerArgs
{
Name = "server_b",
Host = "host_b",
Port = 65535,
},
new Scm.Inputs.KerberosServerProfileServerArgs
{
Name = "server_c",
Host = "192.100.50.135",
Port = 45,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.KerberosServerProfile;
import com.pulumi.scm.KerberosServerProfileArgs;
import com.pulumi.scm.inputs.KerberosServerProfileServerArgs;
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 scmKerberosServerProfile1 = new KerberosServerProfile("scmKerberosServerProfile1", KerberosServerProfileArgs.builder()
.folder("All")
.name("kerberos-server-prof-1")
.servers(KerberosServerProfileServerArgs.builder()
.name("server_a")
.host("$test_ip")
.build())
.build());
var scmKerberosServerProfile2 = new KerberosServerProfile("scmKerberosServerProfile2", KerberosServerProfileArgs.builder()
.folder("All")
.name("kerberos-server-prof-2")
.servers(KerberosServerProfileServerArgs.builder()
.name("server_a")
.host("host_a")
.port(120)
.build())
.build());
var scmKerberosServerProfile3 = new KerberosServerProfile("scmKerberosServerProfile3", KerberosServerProfileArgs.builder()
.folder("All")
.name("kerberos-server-prof-3")
.servers(
KerberosServerProfileServerArgs.builder()
.name("server_a")
.host("host_a")
.port(1)
.build(),
KerberosServerProfileServerArgs.builder()
.name("server_b")
.host("host_b")
.port(65535)
.build(),
KerberosServerProfileServerArgs.builder()
.name("server_c")
.host("192.100.50.135")
.port(45)
.build())
.build());
}
}
resources:
scmKerberosServerProfile1:
type: scm:KerberosServerProfile
name: scm_kerberos_server_profile_1
properties:
folder: All
name: kerberos-server-prof-1
servers:
- name: server_a
host: $test_ip
scmKerberosServerProfile2:
type: scm:KerberosServerProfile
name: scm_kerberos_server_profile_2
properties:
folder: All
name: kerberos-server-prof-2
servers:
- name: server_a
host: host_a
port: 120
scmKerberosServerProfile3:
type: scm:KerberosServerProfile
name: scm_kerberos_server_profile_3
properties:
folder: All
name: kerberos-server-prof-3
servers:
- name: server_a
host: host_a
port: 1
- name: server_b
host: host_b
port: 65535
- name: server_c
host: 192.100.50.135
port: 45
Create KerberosServerProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KerberosServerProfile(name: string, args: KerberosServerProfileArgs, opts?: CustomResourceOptions);@overload
def KerberosServerProfile(resource_name: str,
args: KerberosServerProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KerberosServerProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
servers: Optional[Sequence[KerberosServerProfileServerArgs]] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None)func NewKerberosServerProfile(ctx *Context, name string, args KerberosServerProfileArgs, opts ...ResourceOption) (*KerberosServerProfile, error)public KerberosServerProfile(string name, KerberosServerProfileArgs args, CustomResourceOptions? opts = null)
public KerberosServerProfile(String name, KerberosServerProfileArgs args)
public KerberosServerProfile(String name, KerberosServerProfileArgs args, CustomResourceOptions options)
type: scm:KerberosServerProfile
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 KerberosServerProfileArgs
- 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 KerberosServerProfileArgs
- 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 KerberosServerProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KerberosServerProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KerberosServerProfileArgs
- 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 kerberosServerProfileResource = new Scm.KerberosServerProfile("kerberosServerProfileResource", new()
{
Servers = new[]
{
new Scm.Inputs.KerberosServerProfileServerArgs
{
Host = "string",
Name = "string",
Port = 0,
},
},
Device = "string",
Folder = "string",
Name = "string",
Snippet = "string",
});
example, err := scm.NewKerberosServerProfile(ctx, "kerberosServerProfileResource", &scm.KerberosServerProfileArgs{
Servers: scm.KerberosServerProfileServerArray{
&scm.KerberosServerProfileServerArgs{
Host: pulumi.String("string"),
Name: pulumi.String("string"),
Port: pulumi.Int(0),
},
},
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
Snippet: pulumi.String("string"),
})
var kerberosServerProfileResource = new KerberosServerProfile("kerberosServerProfileResource", KerberosServerProfileArgs.builder()
.servers(KerberosServerProfileServerArgs.builder()
.host("string")
.name("string")
.port(0)
.build())
.device("string")
.folder("string")
.name("string")
.snippet("string")
.build());
kerberos_server_profile_resource = scm.KerberosServerProfile("kerberosServerProfileResource",
servers=[{
"host": "string",
"name": "string",
"port": 0,
}],
device="string",
folder="string",
name="string",
snippet="string")
const kerberosServerProfileResource = new scm.KerberosServerProfile("kerberosServerProfileResource", {
servers: [{
host: "string",
name: "string",
port: 0,
}],
device: "string",
folder: "string",
name: "string",
snippet: "string",
});
type: scm:KerberosServerProfile
properties:
device: string
folder: string
name: string
servers:
- host: string
name: string
port: 0
snippet: string
KerberosServerProfile 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 KerberosServerProfile resource accepts the following input properties:
- Servers
List<Kerberos
Server Profile Server> - The Kerberos server configuration
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the Kerberos server profile
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- Servers
[]Kerberos
Server Profile Server Args - The Kerberos server configuration
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the Kerberos server profile
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- servers
List<Kerberos
Server Profile Server> - The Kerberos server configuration
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the Kerberos server profile
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- servers
Kerberos
Server Profile Server[] - The Kerberos server configuration
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name string
- The name of the Kerberos server profile
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- servers
Sequence[Kerberos
Server Profile Server Args] - The Kerberos server configuration
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name str
- The name of the Kerberos server profile
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- servers List<Property Map>
- The Kerberos server configuration
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the Kerberos server profile
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
Outputs
All input properties are implicitly available as output properties. Additionally, the KerberosServerProfile resource produces the following output properties:
Look up Existing KerberosServerProfile Resource
Get an existing KerberosServerProfile 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?: KerberosServerProfileState, opts?: CustomResourceOptions): KerberosServerProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
servers: Optional[Sequence[KerberosServerProfileServerArgs]] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None) -> KerberosServerProfilefunc GetKerberosServerProfile(ctx *Context, name string, id IDInput, state *KerberosServerProfileState, opts ...ResourceOption) (*KerberosServerProfile, error)public static KerberosServerProfile Get(string name, Input<string> id, KerberosServerProfileState? state, CustomResourceOptions? opts = null)public static KerberosServerProfile get(String name, Output<String> id, KerberosServerProfileState state, CustomResourceOptions options)resources: _: type: scm:KerberosServerProfile 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.
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the Kerberos server profile
- Servers
List<Kerberos
Server Profile Server> - The Kerberos server configuration
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- The Terraform ID.
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Name string
- The name of the Kerberos server profile
- Servers
[]Kerberos
Server Profile Server Args - The Kerberos server configuration
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- The Terraform ID.
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the Kerberos server profile
- servers
List<Kerberos
Server Profile Server> - The Kerberos server configuration
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- The Terraform ID.
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name string
- The name of the Kerberos server profile
- servers
Kerberos
Server Profile Server[] - The Kerberos server configuration
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid string
- The Terraform ID.
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name str
- The name of the Kerberos server profile
- servers
Sequence[Kerberos
Server Profile Server Args] - The Kerberos server configuration
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid str
- The Terraform ID.
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- name String
- The name of the Kerberos server profile
- servers List<Property Map>
- The Kerberos server configuration
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- The Terraform ID.
Supporting Types
KerberosServerProfileServer, KerberosServerProfileServerArgs
Import
The following command can be used to import a resource not managed by Terraform:
terraform import scm_kerberos_server_profile.example folder:::id
or
terraform import scm_kerberos_server_profile.example :snippet::id
or
terraform import scm_kerberos_server_profile.example ::device:id
Note: Please provide just one of folder, snippet, or device for the import command.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
