Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FQDN missing from managed Kubernetes cluster #906

Closed
phekmat opened this issue Feb 28, 2018 · 1 comment · Fixed by #907
Closed

FQDN missing from managed Kubernetes cluster #906

phekmat opened this issue Feb 28, 2018 · 1 comment · Fixed by #907

Comments

@phekmat
Copy link
Contributor

phekmat commented Feb 28, 2018

Terraform Version

Terraform v0.11.3
Azure provider v1.1.2

Affected Resource(s)

  • azurerm_kubernetes_cluster

Terraform Configuration Files

resource "azurerm_kubernetes_cluster" "aks_container" {
    name        = "akc-${random_integer.random_int.result}"
    location    = "${var.resource_group_location}"
    dns_prefix  = "akc-${random_integer.random_int.result}"

    resource_group_name = "${azurerm_resource_group.akc-rg.name}"
    kubernetes_version  = "1.8.7"


    linux_profile {
        admin_username = "${var.linux_admin_username}"
        ssh_key {
            key_data = ""
        }
    }

    agent_pool_profile {
        name        = "agentpool"
        count       = "2"
        vm_size     = "Standard_DS2_v2"
        os_type     = "Linux"
    }

    service_principal {
        client_id     = "${var.client_id}"
        client_secret = "${var.client_secret}"
    }
}

output "fqdn" {
  value = "${azurerm_kubernetes_cluster.aks_container.fqdn}"
}

Expected Behavior

FQDN should be set

Actual Behavior

output.fqdn: Resource 'azurerm_kubernetes_cluster.aks_container' does not have attribute 'fqdn' for variable 'azurerm_kubernetes_cluster.aks_container.fqdn

Steps to Reproduce

Please list the steps required to reproduce the issue, for example:

  1. terraform apply

References

@ghost
Copy link

ghost commented Mar 31, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!

@ghost ghost locked and limited conversation to collaborators Mar 31, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants