/terraform-azure-public-ip

Terraform module that manages an Azure Public IP Address.

Primary LanguageHCLApache License 2.0Apache-2.0

terraform-azure-public-ip

Terraform module that manages an Azure Public IP Address. It is based on the official azurerm_public_ip resource from azurerm provider.

Example usage

inputs = {
    name = "custom-ip-address"
    resource_group_name = "myresourcegroup"
    allocation_method = "Dynamic"
    sku = "Basic"

    domain_name_label = "my-domain"

    tags = {
        "environment" = "dev"
        "client" = "scalair"
    }
}