oci.Core.DhcpOptions
Explore with Pulumi AI
This resource provides the Dhcp Options resource in Oracle Cloud Infrastructure Core service.
Creates a new set of DHCP options for the specified VCN. For more information, see DhcpOptions.
For the purposes of access control, you must provide the OCID of the compartment where you want the set of DHCP options to reside. Notice that the set of options doesn’t have to be in the same compartment as the VCN, subnets, or other Networking Service components. If you’re not sure which compartment to use, put the set of DHCP options in the same compartment as the VCN. For more information about compartments and access control, see Overview of the IAM Service. For information about OCIDs, see Resource Identifiers.
You may optionally specify a display name for the set of DHCP options, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information.
For more information on configuring a VCN’s default DHCP options, see Managing Default VCN Resources
Example Usage
VCN Local with Internet
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDhcpOptions = new oci.core.DhcpOptions("test_dhcp_options", {
compartmentId: compartmentId,
options: [
{
type: "DomainNameServer",
serverType: "VcnLocalPlusInternet",
},
{
type: "SearchDomain",
searchDomainNames: ["test.com"],
},
],
vcnId: testVcn.id,
displayName: dhcpOptionsDisplayName,
});
import pulumi
import pulumi_oci as oci
test_dhcp_options = oci.core.DhcpOptions("test_dhcp_options",
compartment_id=compartment_id,
options=[
{
"type": "DomainNameServer",
"server_type": "VcnLocalPlusInternet",
},
{
"type": "SearchDomain",
"search_domain_names": ["test.com"],
},
],
vcn_id=test_vcn["id"],
display_name=dhcp_options_display_name)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Core.NewDhcpOptions(ctx, "test_dhcp_options", &Core.DhcpOptionsArgs{
CompartmentId: pulumi.Any(compartmentId),
Options: core.DhcpOptionsOptionArray{
&core.DhcpOptionsOptionArgs{
Type: pulumi.String("DomainNameServer"),
ServerType: pulumi.String("VcnLocalPlusInternet"),
},
&core.DhcpOptionsOptionArgs{
Type: pulumi.String("SearchDomain"),
SearchDomainNames: pulumi.StringArray{
pulumi.String("test.com"),
},
},
},
VcnId: pulumi.Any(testVcn.Id),
DisplayName: pulumi.Any(dhcpOptionsDisplayName),
})
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 testDhcpOptions = new Oci.Core.DhcpOptions("test_dhcp_options", new()
{
CompartmentId = compartmentId,
Options = new[]
{
new Oci.Core.Inputs.DhcpOptionsOptionArgs
{
Type = "DomainNameServer",
ServerType = "VcnLocalPlusInternet",
},
new Oci.Core.Inputs.DhcpOptionsOptionArgs
{
Type = "SearchDomain",
SearchDomainNames = new[]
{
"test.com",
},
},
},
VcnId = testVcn.Id,
DisplayName = dhcpOptionsDisplayName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.DhcpOptions;
import com.pulumi.oci.Core.DhcpOptionsArgs;
import com.pulumi.oci.Core.inputs.DhcpOptionsOptionArgs;
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 testDhcpOptions = new DhcpOptions("testDhcpOptions", DhcpOptionsArgs.builder()
.compartmentId(compartmentId)
.options(
DhcpOptionsOptionArgs.builder()
.type("DomainNameServer")
.serverType("VcnLocalPlusInternet")
.build(),
DhcpOptionsOptionArgs.builder()
.type("SearchDomain")
.searchDomainNames("test.com")
.build())
.vcnId(testVcn.id())
.displayName(dhcpOptionsDisplayName)
.build());
}
}
resources:
testDhcpOptions:
type: oci:Core:DhcpOptions
name: test_dhcp_options
properties:
compartmentId: ${compartmentId}
options:
- type: DomainNameServer
serverType: VcnLocalPlusInternet
- type: SearchDomain
searchDomainNames:
- test.com
vcnId: ${testVcn.id}
displayName: ${dhcpOptionsDisplayName}
Custom DNS Server
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDhcpOptions = new oci.core.DhcpOptions("test_dhcp_options", {
compartmentId: compartmentId,
options: [
{
type: "DomainNameServer",
serverType: "CustomDnsServer",
customDnsServers: [
"192.168.0.2",
"192.168.0.11",
"192.168.0.19",
],
},
{
type: "SearchDomain",
searchDomainNames: ["test.com"],
},
],
vcnId: testVcn.id,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: dhcpOptionsDisplayName,
domainNameType: dhcpOptionsDomainNameType,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_dhcp_options = oci.core.DhcpOptions("test_dhcp_options",
compartment_id=compartment_id,
options=[
{
"type": "DomainNameServer",
"server_type": "CustomDnsServer",
"custom_dns_servers": [
"192.168.0.2",
"192.168.0.11",
"192.168.0.19",
],
},
{
"type": "SearchDomain",
"search_domain_names": ["test.com"],
},
],
vcn_id=test_vcn["id"],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=dhcp_options_display_name,
domain_name_type=dhcp_options_domain_name_type,
freeform_tags={
"Department": "Finance",
})
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Core.NewDhcpOptions(ctx, "test_dhcp_options", &Core.DhcpOptionsArgs{
CompartmentId: pulumi.Any(compartmentId),
Options: core.DhcpOptionsOptionArray{
&core.DhcpOptionsOptionArgs{
Type: pulumi.String("DomainNameServer"),
ServerType: pulumi.String("CustomDnsServer"),
CustomDnsServers: pulumi.StringArray{
pulumi.String("192.168.0.2"),
pulumi.String("192.168.0.11"),
pulumi.String("192.168.0.19"),
},
},
&core.DhcpOptionsOptionArgs{
Type: pulumi.String("SearchDomain"),
SearchDomainNames: pulumi.StringArray{
pulumi.String("test.com"),
},
},
},
VcnId: pulumi.Any(testVcn.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(dhcpOptionsDisplayName),
DomainNameType: pulumi.Any(dhcpOptionsDomainNameType),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
})
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 testDhcpOptions = new Oci.Core.DhcpOptions("test_dhcp_options", new()
{
CompartmentId = compartmentId,
Options = new[]
{
new Oci.Core.Inputs.DhcpOptionsOptionArgs
{
Type = "DomainNameServer",
ServerType = "CustomDnsServer",
CustomDnsServers = new[]
{
"192.168.0.2",
"192.168.0.11",
"192.168.0.19",
},
},
new Oci.Core.Inputs.DhcpOptionsOptionArgs
{
Type = "SearchDomain",
SearchDomainNames = new[]
{
"test.com",
},
},
},
VcnId = testVcn.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = dhcpOptionsDisplayName,
DomainNameType = dhcpOptionsDomainNameType,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.DhcpOptions;
import com.pulumi.oci.Core.DhcpOptionsArgs;
import com.pulumi.oci.Core.inputs.DhcpOptionsOptionArgs;
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 testDhcpOptions = new DhcpOptions("testDhcpOptions", DhcpOptionsArgs.builder()
.compartmentId(compartmentId)
.options(
DhcpOptionsOptionArgs.builder()
.type("DomainNameServer")
.serverType("CustomDnsServer")
.customDnsServers(
"192.168.0.2",
"192.168.0.11",
"192.168.0.19")
.build(),
DhcpOptionsOptionArgs.builder()
.type("SearchDomain")
.searchDomainNames("test.com")
.build())
.vcnId(testVcn.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(dhcpOptionsDisplayName)
.domainNameType(dhcpOptionsDomainNameType)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testDhcpOptions:
type: oci:Core:DhcpOptions
name: test_dhcp_options
properties:
compartmentId: ${compartmentId}
options:
- type: DomainNameServer
serverType: CustomDnsServer
customDnsServers:
- 192.168.0.2
- 192.168.0.11
- 192.168.0.19
- type: SearchDomain
searchDomainNames:
- test.com
vcnId: ${testVcn.id}
definedTags:
Operations.CostCenter: '42'
displayName: ${dhcpOptionsDisplayName}
domainNameType: ${dhcpOptionsDomainNameType}
freeformTags:
Department: Finance
Create DhcpOptions Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DhcpOptions(name: string, args: DhcpOptionsArgs, opts?: CustomResourceOptions);
@overload
def DhcpOptions(resource_name: str,
args: DhcpOptionsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DhcpOptions(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
options: Optional[Sequence[_core.DhcpOptionsOptionArgs]] = None,
vcn_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
domain_name_type: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None)
func NewDhcpOptions(ctx *Context, name string, args DhcpOptionsArgs, opts ...ResourceOption) (*DhcpOptions, error)
public DhcpOptions(string name, DhcpOptionsArgs args, CustomResourceOptions? opts = null)
public DhcpOptions(String name, DhcpOptionsArgs args)
public DhcpOptions(String name, DhcpOptionsArgs args, CustomResourceOptions options)
type: oci:Core:DhcpOptions
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 DhcpOptionsArgs
- 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 DhcpOptionsArgs
- 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 DhcpOptionsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DhcpOptionsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DhcpOptionsArgs
- 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 dhcpOptionsResource = new Oci.Core.DhcpOptions("dhcpOptionsResource", new()
{
CompartmentId = "string",
Options = new[]
{
new Oci.Core.Inputs.DhcpOptionsOptionArgs
{
Type = "string",
CustomDnsServers = new[]
{
"string",
},
SearchDomainNames = new[]
{
"string",
},
ServerType = "string",
},
},
VcnId = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
DomainNameType = "string",
FreeformTags =
{
{ "string", "string" },
},
});
example, err := Core.NewDhcpOptions(ctx, "dhcpOptionsResource", &Core.DhcpOptionsArgs{
CompartmentId: pulumi.String("string"),
Options: core.DhcpOptionsOptionArray{
&core.DhcpOptionsOptionArgs{
Type: pulumi.String("string"),
CustomDnsServers: pulumi.StringArray{
pulumi.String("string"),
},
SearchDomainNames: pulumi.StringArray{
pulumi.String("string"),
},
ServerType: pulumi.String("string"),
},
},
VcnId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
DomainNameType: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var dhcpOptionsResource = new DhcpOptions("dhcpOptionsResource", DhcpOptionsArgs.builder()
.compartmentId("string")
.options(DhcpOptionsOptionArgs.builder()
.type("string")
.customDnsServers("string")
.searchDomainNames("string")
.serverType("string")
.build())
.vcnId("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.domainNameType("string")
.freeformTags(Map.of("string", "string"))
.build());
dhcp_options_resource = oci.core.DhcpOptions("dhcpOptionsResource",
compartment_id="string",
options=[oci.core.DhcpOptionsOptionArgs(
type="string",
custom_dns_servers=["string"],
search_domain_names=["string"],
server_type="string",
)],
vcn_id="string",
defined_tags={
"string": "string",
},
display_name="string",
domain_name_type="string",
freeform_tags={
"string": "string",
})
const dhcpOptionsResource = new oci.core.DhcpOptions("dhcpOptionsResource", {
compartmentId: "string",
options: [{
type: "string",
customDnsServers: ["string"],
searchDomainNames: ["string"],
serverType: "string",
}],
vcnId: "string",
definedTags: {
string: "string",
},
displayName: "string",
domainNameType: "string",
freeformTags: {
string: "string",
},
});
type: oci:Core:DhcpOptions
properties:
compartmentId: string
definedTags:
string: string
displayName: string
domainNameType: string
freeformTags:
string: string
options:
- customDnsServers:
- string
searchDomainNames:
- string
serverType: string
type: string
vcnId: string
DhcpOptions 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 DhcpOptions resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- Options
List<Dhcp
Options Option> - (Updatable) A set of DHCP options.
- Vcn
Id string The OCID of the VCN the set of DHCP options belongs to.
** 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, string>
- (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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Domain
Name stringType - (Updatable) The search domain name type of DHCP options
- Dictionary<string, string>
- (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"}
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- Options
[]Dhcp
Options Option Args - (Updatable) A set of DHCP options.
- Vcn
Id string The OCID of the VCN the set of DHCP options belongs to.
** 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]string
- (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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Domain
Name stringType - (Updatable) The search domain name type of DHCP options
- map[string]string
- (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"}
- compartment
Id String - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- options
List<Dhcp
Options Option> - (Updatable) A set of DHCP options.
- vcn
Id String The OCID of the VCN the set of DHCP options belongs to.
** 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,String>
- (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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain
Name StringType - (Updatable) The search domain name type of DHCP options
- Map<String,String>
- (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"}
- compartment
Id string - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- options
Dhcp
Options Option[] - (Updatable) A set of DHCP options.
- vcn
Id string The OCID of the VCN the set of DHCP options belongs to.
** 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]: string}
- (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"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain
Name stringType - (Updatable) The search domain name type of DHCP options
- {[key: string]: string}
- (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"}
- compartment_
id str - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- options
Sequence[core.
Dhcp Options Option Args] - (Updatable) A set of DHCP options.
- vcn_
id str The OCID of the VCN the set of DHCP options belongs to.
** 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, str]
- (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"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain_
name_ strtype - (Updatable) The search domain name type of DHCP options
- Mapping[str, str]
- (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"}
- compartment
Id String - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- options List<Property Map>
- (Updatable) A set of DHCP options.
- vcn
Id String The OCID of the VCN the set of DHCP options belongs to.
** 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>
- (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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain
Name StringType - (Updatable) The search domain name type of DHCP options
- Map<String>
- (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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the DhcpOptions resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the set of DHCP options.
- Time
Created string - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the set of DHCP options.
- Time
Created string - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the set of DHCP options.
- time
Created String - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the set of DHCP options.
- time
Created string - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the set of DHCP options.
- time_
created str - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the set of DHCP options.
- time
Created String - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing DhcpOptions Resource
Get an existing DhcpOptions 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?: DhcpOptionsState, opts?: CustomResourceOptions): DhcpOptions
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
domain_name_type: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
options: Optional[Sequence[_core.DhcpOptionsOptionArgs]] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
vcn_id: Optional[str] = None) -> DhcpOptions
func GetDhcpOptions(ctx *Context, name string, id IDInput, state *DhcpOptionsState, opts ...ResourceOption) (*DhcpOptions, error)
public static DhcpOptions Get(string name, Input<string> id, DhcpOptionsState? state, CustomResourceOptions? opts = null)
public static DhcpOptions get(String name, Output<String> id, DhcpOptionsState 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.
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- Dictionary<string, string>
- (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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Domain
Name stringType - (Updatable) The search domain name type of DHCP options
- Dictionary<string, string>
- (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"}
- Options
List<Dhcp
Options Option> - (Updatable) A set of DHCP options.
- State string
- The current state of the set of DHCP options.
- Time
Created string - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the VCN the set of DHCP options belongs to.
** 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
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- map[string]string
- (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"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Domain
Name stringType - (Updatable) The search domain name type of DHCP options
- map[string]string
- (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"}
- Options
[]Dhcp
Options Option Args - (Updatable) A set of DHCP options.
- State string
- The current state of the set of DHCP options.
- Time
Created string - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the VCN the set of DHCP options belongs to.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- Map<String,String>
- (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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain
Name StringType - (Updatable) The search domain name type of DHCP options
- Map<String,String>
- (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"}
- options
List<Dhcp
Options Option> - (Updatable) A set of DHCP options.
- state String
- The current state of the set of DHCP options.
- time
Created String - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String The OCID of the VCN the set of DHCP options belongs to.
** 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
- compartment
Id string - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- {[key: string]: string}
- (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"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain
Name stringType - (Updatable) The search domain name type of DHCP options
- {[key: string]: string}
- (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"}
- options
Dhcp
Options Option[] - (Updatable) A set of DHCP options.
- state string
- The current state of the set of DHCP options.
- time
Created string - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id string The OCID of the VCN the set of DHCP options belongs to.
** 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
- compartment_
id str - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- Mapping[str, str]
- (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"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain_
name_ strtype - (Updatable) The search domain name type of DHCP options
- Mapping[str, str]
- (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"}
- options
Sequence[core.
Dhcp Options Option Args] - (Updatable) A set of DHCP options.
- state str
- The current state of the set of DHCP options.
- time_
created str - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn_
id str The OCID of the VCN the set of DHCP options belongs to.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment to contain the set of DHCP options.
- Map<String>
- (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"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- domain
Name StringType - (Updatable) The search domain name type of DHCP options
- Map<String>
- (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"}
- options List<Property Map>
- (Updatable) A set of DHCP options.
- state String
- The current state of the set of DHCP options.
- time
Created String - Date and time the set of DHCP options was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String The OCID of the VCN the set of DHCP options belongs to.
** 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
Supporting Types
DhcpOptionsOption, DhcpOptionsOptionArgs
- Type string
- (Updatable) The specific DHCP option. Either
DomainNameServer
(for DhcpDnsOption) orSearchDomain
(for DhcpSearchDomainOption). - Custom
Dns List<string>Servers - (Updatable) If you set
serverType
toCustomDnsServer
, specify the IP address of at least one DNS server of your choice (three maximum). - Search
Domain List<string>Names (Updatable) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried.
If you set DhcpDnsOption to
VcnLocalPlusInternet
, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example,vcn1.oraclevcn.com
).If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
- Server
Type string - (Updatable)
- VcnLocal: Reserved for future use.
- VcnLocalPlusInternet: Also referred to as "Internet and VCN Resolver". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network.
- CustomDnsServer: Instances use a DNS server of your choice (three maximum).
- Type string
- (Updatable) The specific DHCP option. Either
DomainNameServer
(for DhcpDnsOption) orSearchDomain
(for DhcpSearchDomainOption). - Custom
Dns []stringServers - (Updatable) If you set
serverType
toCustomDnsServer
, specify the IP address of at least one DNS server of your choice (three maximum). - Search
Domain []stringNames (Updatable) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried.
If you set DhcpDnsOption to
VcnLocalPlusInternet
, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example,vcn1.oraclevcn.com
).If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
- Server
Type string - (Updatable)
- VcnLocal: Reserved for future use.
- VcnLocalPlusInternet: Also referred to as "Internet and VCN Resolver". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network.
- CustomDnsServer: Instances use a DNS server of your choice (three maximum).
- type String
- (Updatable) The specific DHCP option. Either
DomainNameServer
(for DhcpDnsOption) orSearchDomain
(for DhcpSearchDomainOption). - custom
Dns List<String>Servers - (Updatable) If you set
serverType
toCustomDnsServer
, specify the IP address of at least one DNS server of your choice (three maximum). - search
Domain List<String>Names (Updatable) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried.
If you set DhcpDnsOption to
VcnLocalPlusInternet
, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example,vcn1.oraclevcn.com
).If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
- server
Type String - (Updatable)
- VcnLocal: Reserved for future use.
- VcnLocalPlusInternet: Also referred to as "Internet and VCN Resolver". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network.
- CustomDnsServer: Instances use a DNS server of your choice (three maximum).
- type string
- (Updatable) The specific DHCP option. Either
DomainNameServer
(for DhcpDnsOption) orSearchDomain
(for DhcpSearchDomainOption). - custom
Dns string[]Servers - (Updatable) If you set
serverType
toCustomDnsServer
, specify the IP address of at least one DNS server of your choice (three maximum). - search
Domain string[]Names (Updatable) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried.
If you set DhcpDnsOption to
VcnLocalPlusInternet
, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example,vcn1.oraclevcn.com
).If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
- server
Type string - (Updatable)
- VcnLocal: Reserved for future use.
- VcnLocalPlusInternet: Also referred to as "Internet and VCN Resolver". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network.
- CustomDnsServer: Instances use a DNS server of your choice (three maximum).
- type str
- (Updatable) The specific DHCP option. Either
DomainNameServer
(for DhcpDnsOption) orSearchDomain
(for DhcpSearchDomainOption). - custom_
dns_ Sequence[str]servers - (Updatable) If you set
serverType
toCustomDnsServer
, specify the IP address of at least one DNS server of your choice (three maximum). - search_
domain_ Sequence[str]names (Updatable) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried.
If you set DhcpDnsOption to
VcnLocalPlusInternet
, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example,vcn1.oraclevcn.com
).If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
- server_
type str - (Updatable)
- VcnLocal: Reserved for future use.
- VcnLocalPlusInternet: Also referred to as "Internet and VCN Resolver". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network.
- CustomDnsServer: Instances use a DNS server of your choice (three maximum).
- type String
- (Updatable) The specific DHCP option. Either
DomainNameServer
(for DhcpDnsOption) orSearchDomain
(for DhcpSearchDomainOption). - custom
Dns List<String>Servers - (Updatable) If you set
serverType
toCustomDnsServer
, specify the IP address of at least one DNS server of your choice (three maximum). - search
Domain List<String>Names (Updatable) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried.
If you set DhcpDnsOption to
VcnLocalPlusInternet
, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example,vcn1.oraclevcn.com
).If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
- server
Type String - (Updatable)
- VcnLocal: Reserved for future use.
- VcnLocalPlusInternet: Also referred to as "Internet and VCN Resolver". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network.
- CustomDnsServer: Instances use a DNS server of your choice (three maximum).
Import
DhcpOptions can be imported using the id
, e.g.
$ pulumi import oci:Core/dhcpOptions:DhcpOptions test_dhcp_options "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.