oci.Dns.TsigKey
Explore with Pulumi AI
This resource provides the Tsig Key resource in Oracle Cloud Infrastructure DNS service.
Creates a new TSIG key in the specified compartment. There is no
opc-retry-token
header since TSIG key names must be globally unique.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testTsigKey = new oci.dns.TsigKey("test_tsig_key", {
algorithm: tsigKeyAlgorithm,
compartmentId: compartmentId,
name: tsigKeyName,
secret: tsigKeySecret,
definedTags: tsigKeyDefinedTags,
freeformTags: tsigKeyFreeformTags,
});
import pulumi
import pulumi_oci as oci
test_tsig_key = oci.dns.TsigKey("test_tsig_key",
algorithm=tsig_key_algorithm,
compartment_id=compartment_id,
name=tsig_key_name,
secret=tsig_key_secret,
defined_tags=tsig_key_defined_tags,
freeform_tags=tsig_key_freeform_tags)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Dns"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Dns.NewTsigKey(ctx, "test_tsig_key", &Dns.TsigKeyArgs{
Algorithm: pulumi.Any(tsigKeyAlgorithm),
CompartmentId: pulumi.Any(compartmentId),
Name: pulumi.Any(tsigKeyName),
Secret: pulumi.Any(tsigKeySecret),
DefinedTags: pulumi.Any(tsigKeyDefinedTags),
FreeformTags: pulumi.Any(tsigKeyFreeformTags),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testTsigKey = new Oci.Dns.TsigKey("test_tsig_key", new()
{
Algorithm = tsigKeyAlgorithm,
CompartmentId = compartmentId,
Name = tsigKeyName,
Secret = tsigKeySecret,
DefinedTags = tsigKeyDefinedTags,
FreeformTags = tsigKeyFreeformTags,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Dns.TsigKey;
import com.pulumi.oci.Dns.TsigKeyArgs;
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 testTsigKey = new TsigKey("testTsigKey", TsigKeyArgs.builder()
.algorithm(tsigKeyAlgorithm)
.compartmentId(compartmentId)
.name(tsigKeyName)
.secret(tsigKeySecret)
.definedTags(tsigKeyDefinedTags)
.freeformTags(tsigKeyFreeformTags)
.build());
}
}
resources:
testTsigKey:
type: oci:Dns:TsigKey
name: test_tsig_key
properties:
algorithm: ${tsigKeyAlgorithm}
compartmentId: ${compartmentId}
name: ${tsigKeyName}
secret: ${tsigKeySecret}
definedTags: ${tsigKeyDefinedTags}
freeformTags: ${tsigKeyFreeformTags}
Create TsigKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TsigKey(name: string, args: TsigKeyArgs, opts?: CustomResourceOptions);
@overload
def TsigKey(resource_name: str,
args: TsigKeyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TsigKey(resource_name: str,
opts: Optional[ResourceOptions] = None,
algorithm: Optional[str] = None,
compartment_id: Optional[str] = None,
secret: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None)
func NewTsigKey(ctx *Context, name string, args TsigKeyArgs, opts ...ResourceOption) (*TsigKey, error)
public TsigKey(string name, TsigKeyArgs args, CustomResourceOptions? opts = null)
public TsigKey(String name, TsigKeyArgs args)
public TsigKey(String name, TsigKeyArgs args, CustomResourceOptions options)
type: oci:Dns:TsigKey
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 TsigKeyArgs
- 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 TsigKeyArgs
- 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 TsigKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TsigKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TsigKeyArgs
- 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 tsigKeyResource = new Oci.Dns.TsigKey("tsigKeyResource", new()
{
Algorithm = "string",
CompartmentId = "string",
Secret = "string",
DefinedTags =
{
{ "string", "any" },
},
FreeformTags =
{
{ "string", "any" },
},
Name = "string",
});
example, err := Dns.NewTsigKey(ctx, "tsigKeyResource", &Dns.TsigKeyArgs{
Algorithm: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
Secret: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Name: pulumi.String("string"),
})
var tsigKeyResource = new TsigKey("tsigKeyResource", TsigKeyArgs.builder()
.algorithm("string")
.compartmentId("string")
.secret("string")
.definedTags(Map.of("string", "any"))
.freeformTags(Map.of("string", "any"))
.name("string")
.build());
tsig_key_resource = oci.dns.TsigKey("tsigKeyResource",
algorithm="string",
compartment_id="string",
secret="string",
defined_tags={
"string": "any",
},
freeform_tags={
"string": "any",
},
name="string")
const tsigKeyResource = new oci.dns.TsigKey("tsigKeyResource", {
algorithm: "string",
compartmentId: "string",
secret: "string",
definedTags: {
string: "any",
},
freeformTags: {
string: "any",
},
name: "string",
});
type: oci:Dns:TsigKey
properties:
algorithm: string
compartmentId: string
definedTags:
string: any
freeformTags:
string: any
name: string
secret: string
TsigKey Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The TsigKey resource accepts the following input properties:
- Algorithm string
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the TSIG key.
- Secret string
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- Name string
- A globally unique domain name identifying the key for a given pair of hosts.
- Algorithm string
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the TSIG key.
- Secret string
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- Name string
- A globally unique domain name identifying the key for a given pair of hosts.
- algorithm String
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment
Id String - (Updatable) The OCID of the compartment containing the TSIG key.
- secret String
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name String
- A globally unique domain name identifying the key for a given pair of hosts.
- algorithm string
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment
Id string - (Updatable) The OCID of the compartment containing the TSIG key.
- secret string
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name string
- A globally unique domain name identifying the key for a given pair of hosts.
- algorithm str
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment_
id str - (Updatable) The OCID of the compartment containing the TSIG key.
- secret str
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name str
- A globally unique domain name identifying the key for a given pair of hosts.
- algorithm String
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment
Id String - (Updatable) The OCID of the compartment containing the TSIG key.
- secret String
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name String
- A globally unique domain name identifying the key for a given pair of hosts.
Outputs
All input properties are implicitly available as output properties. Additionally, the TsigKey resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Self string
- The canonical absolute URL of the resource.
- State string
- The current state of the resource.
- Time
Created string - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Self string
- The canonical absolute URL of the resource.
- State string
- The current state of the resource.
- Time
Created string - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- id String
- The provider-assigned unique ID for this managed resource.
- self String
- The canonical absolute URL of the resource.
- state String
- The current state of the resource.
- time
Created String - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- id string
- The provider-assigned unique ID for this managed resource.
- self string
- The canonical absolute URL of the resource.
- state string
- The current state of the resource.
- time
Created string - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time
Updated string - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- id str
- The provider-assigned unique ID for this managed resource.
- self str
- The canonical absolute URL of the resource.
- state str
- The current state of the resource.
- time_
created str - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time_
updated str - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- id String
- The provider-assigned unique ID for this managed resource.
- self String
- The canonical absolute URL of the resource.
- state String
- The current state of the resource.
- time
Created String - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
Look up Existing TsigKey Resource
Get an existing TsigKey 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?: TsigKeyState, opts?: CustomResourceOptions): TsigKey
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
algorithm: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
name: Optional[str] = None,
secret: Optional[str] = None,
self: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> TsigKey
func GetTsigKey(ctx *Context, name string, id IDInput, state *TsigKeyState, opts ...ResourceOption) (*TsigKey, error)
public static TsigKey Get(string name, Input<string> id, TsigKeyState? state, CustomResourceOptions? opts = null)
public static TsigKey get(String name, Output<String> id, TsigKeyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Algorithm string
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the TSIG key.
- Dictionary<string, object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Dictionary<string, object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- Name string
- A globally unique domain name identifying the key for a given pair of hosts.
- Secret string
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Self string
- The canonical absolute URL of the resource.
- State string
- The current state of the resource.
- Time
Created string - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- Algorithm string
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the TSIG key.
- map[string]interface{}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- map[string]interface{}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- Name string
- A globally unique domain name identifying the key for a given pair of hosts.
- Secret string
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Self string
- The canonical absolute URL of the resource.
- State string
- The current state of the resource.
- Time
Created string - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- Time
Updated string - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- algorithm String
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment
Id String - (Updatable) The OCID of the compartment containing the TSIG key.
- Map<String,Object>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Map<String,Object>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name String
- A globally unique domain name identifying the key for a given pair of hosts.
- secret String
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- self String
- The canonical absolute URL of the resource.
- state String
- The current state of the resource.
- time
Created String - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- algorithm string
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment
Id string - (Updatable) The OCID of the compartment containing the TSIG key.
- {[key: string]: any}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- {[key: string]: any}
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name string
- A globally unique domain name identifying the key for a given pair of hosts.
- secret string
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- self string
- The canonical absolute URL of the resource.
- state string
- The current state of the resource.
- time
Created string - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time
Updated string - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- algorithm str
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment_
id str - (Updatable) The OCID of the compartment containing the TSIG key.
- Mapping[str, Any]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Mapping[str, Any]
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name str
- A globally unique domain name identifying the key for a given pair of hosts.
- secret str
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- self str
- The canonical absolute URL of the resource.
- state str
- The current state of the resource.
- time_
created str - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time_
updated str - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
- algorithm String
- TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
- compartment
Id String - (Updatable) The OCID of the compartment containing the TSIG key.
- Map<Any>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example:
{"Operations": {"CostCenter": "42"}}
- Map<Any>
(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example:
{"Department": "Finance"}
- name String
- A globally unique domain name identifying the key for a given pair of hosts.
- secret String
A base64 string encoding the binary shared secret.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- self String
- The canonical absolute URL of the resource.
- state String
- The current state of the resource.
- time
Created String - The date and time the resource was created, expressed in RFC 3339 timestamp format.
- time
Updated String - The date and time the resource was last updated, expressed in RFC 3339 timestamp format.
Import
TsigKeys can be imported using the id
, e.g.
$ pulumi import oci:Dns/tsigKey:TsigKey test_tsig_key "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.