<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dynatrace OneAgent Azure VM extension installation with Terraform in Cloud platforms</title>
    <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249956#M1687</link>
    <description>&lt;P&gt;Hmmm strange. Is your INSTALL_PATH accessible for the installation?&lt;/P&gt;&lt;P&gt;Is it possible to get more logs from the installation to get more insights, why it failed?&lt;/P&gt;&lt;P&gt;Kind regards, Sebastian&lt;/P&gt;</description>
    <pubDate>Fri, 05 Jul 2024 07:47:53 GMT</pubDate>
    <dc:creator>Seb_Wilhelm</dc:creator>
    <dc:date>2024-07-05T07:47:53Z</dc:date>
    <item>
      <title>Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63866#M808</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I suceeded in installing Dynatrace OneAgent to monitor a Kubernetes cluster deployed in Azure Container Service and I would like to do the same on Azure Compute VMs.&lt;/P&gt;
&lt;P&gt;It was also successful through Azure Portal UI to set the OneAgent extension to VM but I tried to use Hashicorp Terraform for the same purpose and then I encountered an issue.&lt;/P&gt;
&lt;P&gt;My terraform resource file looks like this :&lt;/P&gt;
&lt;PRE&gt;resource "azurerm_virtual_machine_extension" "instance" {&lt;BR /&gt;  name                 = "vmname_oneAgentLinux"&lt;BR /&gt;  location             = "westeurope"&lt;BR /&gt;  resource_group_name  = "my_resource_group_name"&lt;BR /&gt;  virtual_machine_name = "vm_name"&lt;BR /&gt;  publisher            = "dynatrace_publisher"&lt;BR /&gt;  type                 = "oneAgentLinux"&lt;BR /&gt;  type_handler_version = "2.3.0.1"&lt;BR /&gt;  settings             = "{ \"tenantId\" : \"mytenant\" , \"token\" : \"mytoken\" }"&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;Firstly I thought &lt;STRONG&gt;type&lt;/STRONG&gt; and &lt;STRONG&gt;type_handler_version&lt;/STRONG&gt; were not mandatory (as it was not in azure portal) but I found values indicated in &lt;A href="https://www.dynatrace.com/support/help/cloud-platforms/azure/how-do-i-deploy-oneagent-to-azure-compute-vms/" target="_blank"&gt;https://www.dynatrace.com/support/help/cloud-platf...&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;So I've got supposed valid values by requesting azure cli:&lt;/P&gt;
&lt;PRE&gt;az vm extension image list --location westeurope -p dynatrace.ruxit -o table&lt;BR /&gt;&lt;BR /&gt;Name                    Publisher        Version&lt;BR /&gt;----------------------  ---------------  ---------&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.150.0.0&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.151.0.0&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.151.0.1&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.99.1.1&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.99.1.2&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.99.2.0&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  1.99.2.1&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  2.2.0.0&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  2.2.0.1&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  2.2.0.2&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  2.3.0.0&lt;BR /&gt;oneAgentLinux           dynatrace.ruxit  2.3.0.1&lt;/PRE&gt;
&lt;P&gt;But whatever value I use, I get the same error when I apply my terraform :&lt;/P&gt;
&lt;PRE&gt;* azurerm_virtual_machine_extension.instance: compute.VirtualMachineExtensionsClient#CreateOrUpdate: Failure sending request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="InvalidParameter" Message="The value of parameter typeHandlerVersion is invalid." * azurerm_virtual_machine_extension.instance: 1 error(s) occurred:&lt;/PRE&gt;
&lt;P&gt;Did someone here already have same issue with the installation of oneAgent on Azure VMs (not forcibly with terraform but arm or powershell, azure cli... ) ?&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Sylvain&lt;/P&gt;
&lt;P&gt;PS: additional informations : Azure Datacenter Westeurope&lt;/P&gt;
&lt;P&gt;Terraform 0.10&lt;/P&gt;
&lt;P&gt;terraform provider.azurerm 1.1.2&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 10:15:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63866#M808</guid>
      <dc:creator>slelann</dc:creator>
      <dc:date>2021-12-09T10:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63867#M809</link>
      <description>&lt;P&gt;uh uh, just 5 minutes later, I found the trick : type_handler_version parameter value seems to be limited to 2 digits.&lt;/P&gt;&lt;P&gt;So with the value "2.3" my terraform plan goes on... but failed with a new more comprehensible message &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;Long running operation terminated with status 'Failed': Code="VMExtensionProvisioningError" Message="VM has reported a failure when processing extension 'oneAgentLinux'. Error message: \"Installation failed: ERROR: Downloading agent installer failed!\"."&lt;/PRE&gt;&lt;P&gt;Probably a problem of availability of this version of agent in my datacenter location&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 09:20:47 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63867#M809</guid>
      <dc:creator>slelann</dc:creator>
      <dc:date>2018-04-12T09:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63868#M810</link>
      <description>&lt;P&gt;Still struggling with versions...&lt;/P&gt;&lt;P&gt;I'm confused with the actual OneAgent version (1.139) and the list of versions provided by Azure extensions (1.99.*, 1.150.*, 1.151.*, 2.2.*, 2.3.*)&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 12:15:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63868#M810</guid>
      <dc:creator>slelann</dc:creator>
      <dc:date>2018-04-12T12:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63869#M811</link>
      <description>&lt;P&gt;Is it resolved ?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jul 2018 07:51:52 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63869#M811</guid>
      <dc:creator>arunraj_r</dc:creator>
      <dc:date>2018-07-25T07:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63870#M812</link>
      <description>&lt;P&gt;I got the same problem, but I had entered my Azure TenantID in the tenantid field, while it should be the Dynatrace environment id.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Dec 2018 10:00:39 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/63870#M812</guid>
      <dc:creator>nmommaerts</dc:creator>
      <dc:date>2018-12-10T10:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/230134#M1447</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just in case someone else is looking for a way to set additional properties, like host tags, etc.&lt;/P&gt;&lt;P&gt;You can provide even more properties by using the installerArguments property:&lt;/P&gt;&lt;PRE&gt;\&lt;SPAN&gt;"installerArguments&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;--set-host-tag=stage=dev --set-host-tag=application=example_application --set-monitoring-mode=fullstack&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 13:24:21 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/230134#M1447</guid>
      <dc:creator>S_Wilhelm</dc:creator>
      <dc:date>2023-11-28T13:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249749#M1678</link>
      <description>&lt;P&gt;Guys,&lt;BR /&gt;&lt;BR /&gt;Did you resolve this problem?&lt;BR /&gt;&lt;BR /&gt;I am trying the same but I am getting an error:&lt;BR /&gt;API Response:&lt;BR /&gt;│&lt;BR /&gt;│ ----[start]----&lt;BR /&gt;│ {&lt;BR /&gt;│ "startTime": "2024-07-02T15:00:42.6313686+00:00",&lt;BR /&gt;│ "endTime": "2024-07-02T15:01:13.2250994+00:00",&lt;BR /&gt;│ "status": "Failed",&lt;BR /&gt;│ "error": {&lt;BR /&gt;│ "code": "VMExtensionProvisioningError",&lt;BR /&gt;│ "message": "VM has reported a failure when processing extension 'vmdacatest01' (publisher 'dynatrace.ruxit' and type 'oneAgentLinux'). Error message: 'Installation failed: ERROR: Agent installer failed'. More information on troubleshooting is available at &lt;A href="https://aka.ms/vmextensionlinuxtroubleshoot" target="_blank"&gt;https://aka.ms/vmextensionlinuxtroubleshoot&lt;/A&gt;. "&lt;BR /&gt;│ },&lt;BR /&gt;│ "name": "5970bb69-741d-455c-b39d-3ec85bb6c31e"&lt;BR /&gt;│ }&lt;BR /&gt;│ -----[end]-----&lt;BR /&gt;│&lt;BR /&gt;│&lt;BR /&gt;│ with azurerm_virtual_machine_extension.dynatrace_extension,&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 15:11:02 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249749#M1678</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-07-02T15:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249799#M1681</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/6203"&gt;@S_Wilhelm&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried your suggestion for installerArguments, but it is not working for me&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 07:44:45 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249799#M1681</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-07-03T07:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249800#M1682</link>
      <description>&lt;P&gt;This is my code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;resource&lt;/SPAN&gt; &lt;SPAN&gt;"azurerm_virtual_machine_extension"&lt;/SPAN&gt; &lt;SPAN&gt;"dynatrace_extension"&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"DynatraceOneAgent"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;virtual_machine_id&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;data&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;azurerm_virtual_machine&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;example&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;id&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;publisher&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"dynatrace.ruxit"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"oneAgentLinux"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type_handler_version&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"2.3"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;settings&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"{ &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;tenantId&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;tenantId&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; , &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;token&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;token&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;installerArguments&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;--set-host-tag=stage=DacaDev --set-monitoring-mode=discovery --set-app-log-content-access=true INSTALL_PATH=/mnt/dynatrace/agent&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; }"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 03 Jul 2024 07:46:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249800#M1682</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-07-03T07:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249868#M1684</link>
      <description>&lt;P&gt;This is the implementation, that is still running on my side. Good luck:&lt;/P&gt;&lt;P&gt;resource "azurerm_virtual_machine_extension" "dynatrace_oneagent" {&lt;BR /&gt;name = "dynatrace_oneAgentLinux"&lt;BR /&gt;virtual_machine_id = azurerm_linux_virtual_machine.cloud-init-azdevops.id&lt;BR /&gt;publisher = "dynatrace.ruxit"&lt;BR /&gt;type = "oneAgentLinux"&lt;BR /&gt;type_handler_version = "2.3"&lt;BR /&gt;settings = "{ \"tenantId\" : \"${var.environment_id}\" , \"token\" : \"${var.environment_api_token}\", \"server\":\"https://${var.environment_ag_url}/e/${var.environment_id}/api\", \"enableLogAnalytics\":\"yes\", \"installerArguments\":\"--set-host-group=MYPROJECT-${var.environment_name} --set-monitoring-mode=infra-only --set-host-tag=application=MYPROJECT --set-host-tag=stage=${var.environment_name} --set-host-tag=datacenter=AZURE\" }"&lt;BR /&gt;tags = local.tags&lt;BR /&gt;auto_upgrade_minor_version = true&lt;BR /&gt;depends_on = [&lt;BR /&gt;azurerm_linux_virtual_machine.cloud-init-azdevops&lt;BR /&gt;]&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 21:13:06 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249868#M1684</guid>
      <dc:creator>Seb_Wilhelm</dc:creator>
      <dc:date>2024-07-03T21:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249898#M1686</link>
      <description>&lt;P&gt;Thanks.&lt;BR /&gt;&lt;BR /&gt;I am not sure why installerArguments are not working for me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 08:57:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249898#M1686</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-07-04T08:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249956#M1687</link>
      <description>&lt;P&gt;Hmmm strange. Is your INSTALL_PATH accessible for the installation?&lt;/P&gt;&lt;P&gt;Is it possible to get more logs from the installation to get more insights, why it failed?&lt;/P&gt;&lt;P&gt;Kind regards, Sebastian&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 07:47:53 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249956#M1687</guid>
      <dc:creator>Seb_Wilhelm</dc:creator>
      <dc:date>2024-07-05T07:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249958#M1688</link>
      <description>&lt;P&gt;I am not sure, but the thing is that it is not taking any setup from installerArguments.&lt;BR /&gt;It's not just install path, it's not setting host group, host tags, nothing&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 08:01:13 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249958#M1688</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-07-05T08:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249962#M1689</link>
      <description>&lt;P&gt;this is my code and for me it looks like yours:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;resource&lt;/SPAN&gt; &lt;SPAN&gt;"azurerm_virtual_machine_extension"&lt;/SPAN&gt; &lt;SPAN&gt;"dynatrace_extension"&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"DynatraceOneAgentLinux"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;virtual_machine_id&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;data&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;azurerm_virtual_machine&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;example&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;id&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;publisher&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"dynatrace.ruxit"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"oneAgentLinux"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type_handler_version&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"2.3"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;settings&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;{ &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;tenantId&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;environment_id&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; , &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;token&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;access_token&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;enableLogAnalytics&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;yes&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;installerArguments&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt;--set-host-group=sre-test --set-monitoring-mode=discovery --set-host-tag=tool=terraform --set-host-tag=stage=TEST&lt;/SPAN&gt;&lt;SPAN&gt;\"&lt;/SPAN&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;tags&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;environment&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"test"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;tool&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"terraform"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 Jul 2024 09:23:00 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249962#M1689</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-07-05T09:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249965#M1690</link>
      <description>&lt;P&gt;I also don't see any relevant difference in the code.And without the logs, it's hard to debug anything.&lt;/P&gt;&lt;P&gt;Seems like you need to raise a support ticket for Dynatrace. Afaik Terraform isn't supported by Dynatrace. But it's worth a try.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 09:34:23 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/249965#M1690</guid>
      <dc:creator>Seb_Wilhelm</dc:creator>
      <dc:date>2024-07-05T09:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dynatrace OneAgent Azure VM extension installation with Terraform</title>
      <link>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/256554#M1766</link>
      <description>&lt;P&gt;I resolved the issue that I had, here is the code that is working for me:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;resource&lt;/SPAN&gt; &lt;SPAN&gt;"azurerm_virtual_machine_extension"&lt;/SPAN&gt; &lt;SPAN&gt;"dynatrace_extension"&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;name&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"DynatraceOneAgentLinux"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;virtual_machine_id&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;data&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;azurerm_virtual_machine&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;example&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;id&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;publisher&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"dynatrace.ruxit"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"oneAgentLinux"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type_handler_version&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"2.3"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;settings&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;&amp;lt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;SETTINGS&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "tenantId": "&lt;/SPAN&gt;&lt;SPAN&gt;${&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;environment_id&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "token": "&lt;/SPAN&gt;&lt;SPAN&gt;$&lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;access_token&lt;/SPAN&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "installerArguments": "--set-monitoring-mode=infra-only --set-watchdog-portrange=60000:60100 INSTALL_PATH=/dynatrace/opt/dynatrace/oneagent LOG_PATH=/dynatrace/var/log/dynatrace/oneagent DATA_STORAGE=/dynatrace/var/lib/dynatrace/oneagent/datastorage",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; "enableLogAnalytics": "true"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SETTINGS&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;auto_upgrade_minor_version&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;tags&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;environment&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"test"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;tool&lt;/SPAN&gt;&lt;SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;"terraform"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 20 Sep 2024 06:29:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Cloud-platforms/Dynatrace-OneAgent-Azure-VM-extension-installation-with/m-p/256554#M1766</guid>
      <dc:creator>danijela</dc:creator>
      <dc:date>2024-09-20T06:29:42Z</dc:date>
    </item>
  </channel>
</rss>

