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

Azure virtual machine extension timeout and create empty extension #3449

Closed
alk-rniveau opened this issue May 15, 2019 · 2 comments
Closed

Comments

@alk-rniveau
Copy link

Terraform (and AzureRM Provider) Version

Terraform v0.11.13
+ provider.azurerm v1.27.1
+ provider.dns v2.1.1
+ provider.null v2.1.2

Affected Resource(s)

  • azurerm_virtual_machine_extension

Terraform Configuration Files

resource "azurerm_virtual_machine_extension" "vm-omsagent-extension" {
  name                       = "hostname"
  location                   = "${var.azure_location}"
  publisher                  = "Microsoft.EnterpriseCloud.Monitoring"
  resource_group_name        = "hostname.rg-name"
  type                       = "OmsAgentForLinux"
  type_handler_version       = "1.9"
  auto_upgrade_minor_version = "true"
  virtual_machine_name       = "hostname"
  settings                   = "{ \"workspaceId\": \"${logs-workspace.workspace_id}\"}"
  protected_settings         = "{\"vmResourceId\": \"hostname\", \"workspaceKey\": \"${logs-workspace.workspace_primary_key}\"}"
}

resource "azurerm_resource_group" "logs-rg" {
  name     = "logs-rg"
  location = "${var.azure_location}"
}

resource "azurerm_log_analytics_workspace" "log-workspace" {
  name                = "log-workspace"
  location            = "${var.azure_location}"
  resource_group_name = "${azurerm_resource_group.logs-rg.name}"
  sku                 = "PerGB2018"
  retention_in_days   = 30
}

Debug Output

https://gist.github.com/alk-rniveau/acc0e89319d8860a95f8efcd50d601a6

Expected Behavior

Have a extension setup and running on the virtual machine

Actual Behavior

Terraform timeout and I have an empty extension on the azure portal (can see with picture)

Steps to Reproduce

  1. terraform apply

Capture d’écran 2019-05-15 à 15 50 24

@tombuildsstuff
Copy link
Contributor

hi @alk-rniveau

Thanks for opening this issue :)

Taking a look into this this appears to be a duplicate of hashicorp/go-azure-helpers#22 - as such I'm going to close this in favour of that issue, please subscribe to that issue for updates.

Thanks!

@ghost
Copy link

ghost commented Jun 15, 2019

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 Jun 15, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants
@tombuildsstuff @alk-rniveau and others