github.com/atsaki/terraform@v0.4.3-0.20150919165407-25bba5967654/website/source/docs/providers/azure/r/dns_server.html.markdown (about)

     1  ---
     2  layout: "azure"
     3  page_title: "Azure: azure_dns_server"
     4  sidebar_current: "docs-azure-resource-dns-server"
     5  description: |-
     6      Creates a new DNS server definition to be used internally in Azure.
     7  ---
     8  
     9  # azure\_dns\_server
    10  
    11  Creates a new DNS server definition to be used internally in Azure.
    12  
    13  ## Example Usage
    14  
    15  ```
    16  resource "azure_dns_server" "google-dns" {
    17      name = "google"
    18      dns_address = "8.8.8.8"
    19  }
    20  `
    21  ```
    22  
    23  ## Argument Reference
    24  
    25  The following arguments are supported:
    26  
    27  * `name` - (Required) The name of the DNS server reference. Changing this
    28      forces a new resource to be created.
    29  
    30  * `dns_address` - (Required) The IP address of the DNS server.
    31  
    32  ## Attributes Reference
    33  
    34  The following attributes are exported:
    35  
    36  * `id` - The DNS server definition ID. Coincides with the given `name`.