tag azure resources with gitlab-ci-test

cloud cleaner removes old enough resources with 'gitlab-ci-test' tag.
This commit is contained in:
Juan Abia 2022-06-29 16:31:11 +02:00 committed by jabia99
parent 08811dd632
commit 8f9bb1bc01
3 changed files with 51 additions and 7 deletions

View file

@ -47,6 +47,9 @@
"type": "Microsoft.Network/networkInterfaces",
"apiVersion": "2019-07-01",
"location": "[parameters('location')]",
"tags": {
"gitlab-ci-test": "true"
},
"dependsOn": [
"[concat('Microsoft.Network/networkSecurityGroups/', parameters('networkSecurityGroupName'))]",
"[concat('Microsoft.Network/virtualNetworks/', parameters('virtualNetworkName'))]",
@ -77,6 +80,9 @@
"type": "Microsoft.Network/networkSecurityGroups",
"apiVersion": "2019-02-01",
"location": "[parameters('location')]",
"tags": {
"gitlab-ci-test": "true"
},
"properties": {
"securityRules": [
{
@ -100,6 +106,9 @@
"type": "Microsoft.Network/virtualNetworks",
"apiVersion": "2019-09-01",
"location": "[parameters('location')]",
"tags": {
"gitlab-ci-test": "true"
},
"properties": {
"addressSpace": {
"addressPrefixes": [
@ -121,6 +130,9 @@
"type": "Microsoft.Network/publicIpAddresses",
"apiVersion": "2019-02-01",
"location": "[parameters('location')]",
"tags": {
"gitlab-ci-test": "true"
},
"properties": {
"publicIpAllocationMethod": "Dynamic"
},
@ -133,6 +145,9 @@
"type": "Microsoft.Compute/images",
"apiVersion": "2019-07-01",
"location": "[parameters('location')]",
"tags": {
"gitlab-ci-test": "true"
},
"properties": {
"hyperVGeneration": "V2",
"storageProfile": {
@ -149,6 +164,9 @@
"type": "Microsoft.Compute/virtualMachines",
"apiVersion": "2019-07-01",
"location": "[parameters('location')]",
"tags": {
"gitlab-ci-test": "true"
},
"dependsOn": [
"[concat('Microsoft.Network/networkInterfaces/', parameters('networkInterfaceName'))]",
"[concat('Microsoft.Compute/images/', parameters('imageName'))]"

View file

@ -58,6 +58,9 @@ resource "azurerm_storage_blob" "testBlob" {
# Create vm image
resource "azurerm_image" "testimage" {
name = join("-", ["image", var.TEST_ID])
tags = {
gitlab-ci-test = "true"
}
location = data.azurerm_resource_group.testResourceGroup.location
resource_group_name = data.azurerm_resource_group.testResourceGroup.name
hyper_v_generation = var.HYPER_V_GEN
@ -73,6 +76,9 @@ resource "azurerm_image" "testimage" {
# Create virtual network
resource "azurerm_virtual_network" "testterraformnetwork" {
name = join("-", ["vnet", var.TEST_ID])
tags = {
gitlab-ci-test = "true"
}
address_space = ["10.0.0.0/16"]
location = data.azurerm_resource_group.testResourceGroup.location
resource_group_name = data.azurerm_resource_group.testResourceGroup.name
@ -90,6 +96,9 @@ resource "azurerm_subnet" "testterraformsubnet" {
# Create public IPs
resource "azurerm_public_ip" "testterraformpublicip" {
name = join("-", ["ip", var.TEST_ID])
tags = {
gitlab-ci-test = "true"
}
location = data.azurerm_resource_group.testResourceGroup.location
resource_group_name = data.azurerm_resource_group.testResourceGroup.name
allocation_method = "Dynamic"
@ -99,6 +108,9 @@ resource "azurerm_public_ip" "testterraformpublicip" {
# Create Network Security Group and rule
resource "azurerm_network_security_group" "testterraformnsg" {
name = join("-", ["nsg", var.TEST_ID])
tags = {
gitlab-ci-test = "true"
}
location = data.azurerm_resource_group.testResourceGroup.location
resource_group_name = data.azurerm_resource_group.testResourceGroup.name
@ -119,6 +131,9 @@ resource "azurerm_network_security_group" "testterraformnsg" {
# Create network interface
resource "azurerm_network_interface" "testterraformnic" {
name = join("-", ["iface", var.TEST_ID])
tags = {
gitlab-ci-test = "true"
}
location = data.azurerm_resource_group.testResourceGroup.location
resource_group_name = data.azurerm_resource_group.testResourceGroup.name
@ -142,6 +157,7 @@ resource "tls_private_key" "test_ssh" {
algorithm = "RSA"
rsa_bits = 4096
}
output "tls_private_key" {
value = tls_private_key.test_ssh.private_key_pem
sensitive = true
@ -150,6 +166,9 @@ output "tls_private_key" {
# Create virtual machine
resource "azurerm_linux_virtual_machine" "testterraformvm" {
name = join("-", ["vm", var.TEST_ID])
tags = {
gitlab-ci-test = "true"
}
location = data.azurerm_resource_group.testResourceGroup.location
resource_group_name = data.azurerm_resource_group.testResourceGroup.name
network_interface_ids = [azurerm_network_interface.testterraformnic.id]