Created
July 28, 2017 20:45
-
-
Save tombuildsstuff/4418f5c58516affed5bd5a6c3cadf4ff to your computer and use it in GitHub Desktop.
azurerm-99
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variable "prefix" { | |
default = "bug199" | |
} | |
resource "azurerm_resource_group" "test" { | |
name = "${var.prefix}-dev" | |
location = "West Europe" | |
} | |
resource "azurerm_virtual_network" "test" { | |
name = "${var.prefix}vn" | |
address_space = ["10.0.0.0/16"] | |
location = "${azurerm_resource_group.test.location}" | |
resource_group_name = "${azurerm_resource_group.test.name}" | |
} | |
resource "azurerm_subnet" "test" { | |
name = "main" | |
resource_group_name = "${azurerm_resource_group.test.name}" | |
virtual_network_name = "${azurerm_virtual_network.test.name}" | |
address_prefix = "10.0.2.0/24" | |
} | |
resource "azurerm_network_interface" "test" { | |
name = "${var.prefix}-ni" | |
location = "${azurerm_resource_group.test.location}" | |
resource_group_name = "${azurerm_resource_group.test.name}" | |
ip_configuration { | |
name = "testconfiguration1" | |
subnet_id = "${azurerm_subnet.test.id}" | |
private_ip_address_allocation = "dynamic" | |
} | |
} | |
resource "azurerm_storage_account" "test" { | |
name = "${var.prefix}sa22" | |
resource_group_name = "${azurerm_resource_group.test.name}" | |
location = "${azurerm_resource_group.test.location}" | |
account_type = "Standard_LRS" | |
tags { | |
environment = "staging" | |
} | |
} | |
resource "azurerm_virtual_machine" "test" { | |
name = "${var.prefix}-vm" | |
location = "${azurerm_resource_group.test.location}" | |
resource_group_name = "${azurerm_resource_group.test.name}" | |
network_interface_ids = ["${azurerm_network_interface.test.id}"] | |
vm_size = "Standard_DS1_v2" | |
storage_image_reference { | |
publisher = "Canonical" | |
offer = "UbuntuServer" | |
sku = "14.04.5-LTS" | |
version = "latest" | |
} | |
storage_os_disk { | |
name = "myosdisk1" | |
caching = "ReadWrite" | |
create_option = "FromImage" | |
managed_disk_type = "Standard_LRS" | |
} | |
os_profile { | |
computer_name = "hostname" | |
admin_username = "testadmin" | |
admin_password = "Password1234!" | |
} | |
os_profile_linux_config { | |
disable_password_authentication = false | |
} | |
tags { | |
environment = "staging" | |
} | |
} | |
data "template_file" "xml" { | |
template = "${file("template.xml.tpl")}" | |
vars { | |
virtual_machine_id = "${azurerm_virtual_machine.test.id}" | |
} | |
} | |
resource "azurerm_virtual_machine_extension" "test" { | |
name = "hostname" | |
location = "${azurerm_resource_group.test.location}" | |
resource_group_name = "${azurerm_resource_group.test.name}" | |
virtual_machine_name = "${azurerm_virtual_machine.test.name}" | |
publisher = "Microsoft.Azure.Diagnostics" | |
type = "IaaSDiagnostics" | |
type_handler_version = "2.3" | |
settings = <<SETTINGS | |
{ | |
"xmlCfg": "${base64encode(data.template_file.xml.rendered)}", | |
"storageAccount": "${azurerm_storage_account.test.name}" | |
} | |
SETTINGS | |
protected_settings = <<SETTINGS | |
{ | |
"storageAccountName": "${azurerm_storage_account.test.name}", | |
"storageAccountKey": "${azurerm_storage_account.test.primary_access_key}" | |
} | |
SETTINGS | |
tags { | |
environment = "Production" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<WadCfg> | |
<DiagnosticMonitorConfiguration overallQuotaInMB="4096"> | |
<DiagnosticInfrastructureLogs scheduledTransferPeriod="PT1M" scheduledTransferLogLevelFilter="Warning"/> | |
<PerformanceCounters scheduledTransferPeriod="PT1M"> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\AvailableMemory" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Memory available" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PercentAvailableMemory" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="Mem. percent available" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\UsedMemory" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Memory used" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PercentUsedMemory" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="Memory percentage" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PercentUsedByCache" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="Mem. used by cache" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PagesPerSec" sampleRate="PT15S" unit="CountPerSecond"> | |
<annotation displayName="Pages" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PagesReadPerSec" sampleRate="PT15S" unit="CountPerSecond"> | |
<annotation displayName="Page reads" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PagesWrittenPerSec" sampleRate="PT15S" unit="CountPerSecond"> | |
<annotation displayName="Page writes" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\AvailableSwap" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Swap available" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PercentAvailableSwap" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="Swap percent available" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\UsedSwap" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Swap used" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Memory\PercentUsedSwap" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="Swap percent used" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentIdleTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU idle time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentUserTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU user time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentNiceTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU nice time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentPrivilegedTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU privileged time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentInterruptTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU interrupt time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentDPCTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU DPC time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentProcessorTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU percentage guest OS" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\Processor\PercentIOWaitTime" sampleRate="PT15S" unit="Percent"> | |
<annotation displayName="CPU IO wait time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\BytesPerSecond" sampleRate="PT15S" unit="BytesPerSecond"> | |
<annotation displayName="Disk total bytes" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\ReadBytesPerSecond" sampleRate="PT15S" unit="BytesPerSecond"> | |
<annotation displayName="Disk read guest OS" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\WriteBytesPerSecond" sampleRate="PT15S" unit="BytesPerSecond"> | |
<annotation displayName="Disk write guest OS" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\TransfersPerSecond" sampleRate="PT15S" unit="CountPerSecond"> | |
<annotation displayName="Disk transfers" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\ReadsPerSecond" sampleRate="PT15S" unit="CountPerSecond"> | |
<annotation displayName="Disk reads" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\WritesPerSecond" sampleRate="PT15S" unit="CountPerSecond"> | |
<annotation displayName="Disk writes" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\AverageReadTime" sampleRate="PT15S" unit="Seconds"> | |
<annotation displayName="Disk read time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\AverageWriteTime" sampleRate="PT15S" unit="Seconds"> | |
<annotation displayName="Disk write time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\AverageTransferTime" sampleRate="PT15S" unit="Seconds"> | |
<annotation displayName="Disk transfer time" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\PhysicalDisk\AverageDiskQueueLength" sampleRate="PT15S" unit="Count"> | |
<annotation displayName="Disk queue length" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\BytesTransmitted" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Network out guest OS" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\BytesReceived" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Network in guest OS" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\PacketsTransmitted" sampleRate="PT15S" unit="Count"> | |
<annotation displayName="Packets sent" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\PacketsReceived" sampleRate="PT15S" unit="Count"> | |
<annotation displayName="Packets received" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\BytesTotal" sampleRate="PT15S" unit="Bytes"> | |
<annotation displayName="Network total bytes" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\TotalRxErrors" sampleRate="PT15S" unit="Count"> | |
<annotation displayName="Packets received errors" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\TotalTxErrors" sampleRate="PT15S" unit="Count"> | |
<annotation displayName="Packets sent errors" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
<PerformanceCounterConfiguration counterSpecifier="\NetworkInterface\TotalCollisions" sampleRate="PT15S" unit="Count"> | |
<annotation displayName="Network collisions" locale="en-us"/> | |
</PerformanceCounterConfiguration> | |
</PerformanceCounters> | |
<Metrics resourceId="${virtual_machine_id}"> | |
<MetricAggregation scheduledTransferPeriod="PT1H"/> | |
<MetricAggregation scheduledTransferPeriod="PT1M"/> | |
</Metrics> | |
</DiagnosticMonitorConfiguration> | |
</WadCfg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment