Skip to content

Latest commit

 

History

History
200 lines (164 loc) · 4.09 KB

oci_core_dhcp_options.md

File metadata and controls

200 lines (164 loc) · 4.09 KB

oci_core_dhcp_options

back

Index

Terraform

terraform {
  required_providers {
    oci = ">= 4.21.0"
  }
}

top

Example Usage

module "oci_core_dhcp_options" {
  source = "./modules/oci/r/oci_core_dhcp_options"

  # compartment_id - (required) is a type of string
  compartment_id = null
  # defined_tags - (optional) is a type of map of string
  defined_tags = {}
  # display_name - (optional) is a type of string
  display_name = null
  # freeform_tags - (optional) is a type of map of string
  freeform_tags = {}
  # vcn_id - (required) is a type of string
  vcn_id = null

  options = [{
    custom_dns_servers  = []
    search_domain_names = []
    server_type         = null
    type                = null
  }]

  timeouts = [{
    create = null
    delete = null
    update = null
  }]
}

top

Variables

variable "compartment_id" {
  description = "(required)"
  type        = string
}

variable "defined_tags" {
  description = "(optional)"
  type        = map(string)
  default     = null
}

variable "display_name" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "freeform_tags" {
  description = "(optional)"
  type        = map(string)
  default     = null
}

variable "vcn_id" {
  description = "(required)"
  type        = string
}

variable "options" {
  description = "nested block: NestingSet, min items: 1, max items: 0"
  type = set(object(
    {
      custom_dns_servers  = list(string)
      search_domain_names = list(string)
      server_type         = string
      type                = string
    }
  ))
}

variable "timeouts" {
  description = "nested block: NestingSingle, min items: 0, max items: 0"
  type = set(object(
    {
      create = string
      delete = string
      update = string
    }
  ))
  default = []
}

top

Resource

resource "oci_core_dhcp_options" "this" {
  # compartment_id - (required) is a type of string
  compartment_id = var.compartment_id
  # defined_tags - (optional) is a type of map of string
  defined_tags = var.defined_tags
  # display_name - (optional) is a type of string
  display_name = var.display_name
  # freeform_tags - (optional) is a type of map of string
  freeform_tags = var.freeform_tags
  # vcn_id - (required) is a type of string
  vcn_id = var.vcn_id

  dynamic "options" {
    for_each = var.options
    content {
      # custom_dns_servers - (optional) is a type of list of string
      custom_dns_servers = options.value["custom_dns_servers"]
      # search_domain_names - (optional) is a type of list of string
      search_domain_names = options.value["search_domain_names"]
      # server_type - (optional) is a type of string
      server_type = options.value["server_type"]
      # type - (required) is a type of string
      type = options.value["type"]
    }
  }

  dynamic "timeouts" {
    for_each = var.timeouts
    content {
      # create - (optional) is a type of string
      create = timeouts.value["create"]
      # delete - (optional) is a type of string
      delete = timeouts.value["delete"]
      # update - (optional) is a type of string
      update = timeouts.value["update"]
    }
  }

}

top

Outputs

output "defined_tags" {
  description = "returns a map of string"
  value       = oci_core_dhcp_options.this.defined_tags
}

output "display_name" {
  description = "returns a string"
  value       = oci_core_dhcp_options.this.display_name
}

output "freeform_tags" {
  description = "returns a map of string"
  value       = oci_core_dhcp_options.this.freeform_tags
}

output "id" {
  description = "returns a string"
  value       = oci_core_dhcp_options.this.id
}

output "state" {
  description = "returns a string"
  value       = oci_core_dhcp_options.this.state
}

output "time_created" {
  description = "returns a string"
  value       = oci_core_dhcp_options.this.time_created
}

output "this" {
  value = oci_core_dhcp_options.this
}

top