github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/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  ```hcl
    16  resource "azure_dns_server" "google-dns" {
    17    name        = "google"
    18    dns_address = "8.8.8.8"
    19  }
    20  ```
    21  
    22  ## Argument Reference
    23  
    24  The following arguments are supported:
    25  
    26  * `name` - (Required) The name of the DNS server reference. Changing this
    27      forces a new resource to be created.
    28  
    29  * `dns_address` - (Required) The IP address of the DNS server.
    30  
    31  ## Attributes Reference
    32  
    33  The following attributes are exported:
    34  
    35  * `id` - The DNS server definition ID. Coincides with the given `name`.