From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B924A35A281 for ; Wed, 27 Aug 2025 14:28:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304916; cv=none; b=BMPA0kaflmZhGbnm37E1PPMJ2ENWAe920DHv7V1cW782+AdTJvL6lSHG110xYRQ+Jd/Odg8+jddTXAOLcLyEx9fPpcGDm25KJs+FT7IptCtDT6lmMylaq6KqilKyrhzznAIVvnPdnM8mtpLleUcsa/PzJNnsEZReY71bae+g3J0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756304916; c=relaxed/simple; bh=vRTKJmqWS+NLXRvmUT3FgI8k2JM7ptllFharDwNQWIg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OUlmmrQAEDmtvyEQFHci5kFghMdzBwKlTABMckBPtzenvQGwpvtEQPCQw7hUNyXzxELemsc0/TBlDu2zA0IWJvq9Cr1y7BjIl10fMZkZnJ8zMa0ZboL6lx9kjrQWHoIdHYEfxxQ2QhJI6DMRVcxAO5Yv1ITiE/bwQX0DhqpARqU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bFIQsBXR; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bFIQsBXR" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 63CFEC4CEF7; Wed, 27 Aug 2025 14:28:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756304916; bh=vRTKJmqWS+NLXRvmUT3FgI8k2JM7ptllFharDwNQWIg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bFIQsBXRSV/JzT5w1ITKKd1s43Fmn44Fu6iKQpnXoOA3P+OfKgcxE1e3vm11O07UW xG4GLsZWJtpVGSK3xjMCHx502yBgw3RR6932KBTtZoNVK9KC6xx67xgqtvl84W74Cj 3Z/yt8V+iHmc6cnBOw08ly++ycmezwTQvDC1n066FDgXbZ4gm5mO/w8vWyqK09v1Oo Ay+yXQ8gJGqvA0ZwKxi1PwlRJ8Kane5krlbQ2yy4nz+dRC/33Ay6b9+x8N1yeBO2R7 2jyv+ZrJ1xdexo6nmyMTM5gbSOFf67pKSn95aSmlJ+6M/MxeK6Qxe0e0/85U3iZd+w Oi6oqfhXG8Ljg== From: Chuck Lever To: Cc: Chuck Lever Subject: [PATCH v1 05/26] terraform/azure: Make the resource group name a variable Date: Wed, 27 Aug 2025 10:28:00 -0400 Message-ID: <20250827142832.2629291-6-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250827142832.2629291-1-cel@kernel.org> References: <20250827142832.2629291-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever Resource groups appear to be global. To run more than one instance of kdevops in Azure at the same time, each instance needs a unique resource group. Hoist the resource group name into Kconfig so that it can be set to a unique value. Signed-off-by: Chuck Lever --- .../templates/azure/terraform.tfvars.j2 | 1 + terraform/azure/kconfigs/Kconfig.location | 16 ++++++++++++++++ terraform/azure/main.tf | 2 +- terraform/azure/vars.tf | 5 +++++ 4 files changed, 23 insertions(+), 1 deletion(-) diff --git a/playbooks/roles/gen_tfvars/templates/azure/terraform.tfvars.j2 b/playbooks/roles/gen_tfvars/templates/azure/terraform.tfvars.j2 index 8be48e800036..7ce0f6170e22 100644 --- a/playbooks/roles/gen_tfvars/templates/azure/terraform.tfvars.j2 +++ b/playbooks/roles/gen_tfvars/templates/azure/terraform.tfvars.j2 @@ -1,4 +1,5 @@ azure_subscription_id = "{{ terraform_azure_subscription_id }}" +azure_resource_group_name = "{{ terraform_azure_resource_group_name }}" azure_location = "{{ terraform_azure_location }}" azure_vmsize = "{{ terraform_azure_vm_size }}" azure_image_publisher = "{{ terraform_azure_image_publisher }}" diff --git a/terraform/azure/kconfigs/Kconfig.location b/terraform/azure/kconfigs/Kconfig.location index a7e8bae37507..2cc0e419d54d 100644 --- a/terraform/azure/kconfigs/Kconfig.location +++ b/terraform/azure/kconfigs/Kconfig.location @@ -134,3 +134,19 @@ config TERRAFORM_AZURE_LOCATION default "westus2" if TERRAFORM_AZURE_REGION_WESTUS2 default "westus3" if TERRAFORM_AZURE_REGION_WESTUS3 default "westcentralus" if TERRAFORM_AZURE_REGION_WESTCENTRALUS + +config TERRAFORM_AZURE_RESOURCE_GROUP_NAME + string "Azure resource group name" + output yaml + default "kdevops_resource_group" + help + An Azure resource group is a container that holds related + resources so they can be managed as a single unit. These + resources share the same life cycle and are deployed, + updated, and deleted together. Resource groups are global + to your subscription. + + To run concurrent kdevops jobs in Azure, each run must + have a unique resouce group name. + + https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/overview#resource-groups diff --git a/terraform/azure/main.tf b/terraform/azure/main.tf index c178c34d0180..8dcead78b5fd 100644 --- a/terraform/azure/main.tf +++ b/terraform/azure/main.tf @@ -1,7 +1,7 @@ # Azure terraform provider main resource "azurerm_resource_group" "kdevops_group" { - name = "kdevops_resource_group" + name = var.azure_resource_group_name location = var.azure_location } diff --git a/terraform/azure/vars.tf b/terraform/azure/vars.tf index 2d06857905e2..dd3c20ed05c7 100644 --- a/terraform/azure/vars.tf +++ b/terraform/azure/vars.tf @@ -33,6 +33,11 @@ variable "azure_managed_disks_tier" { type = string } +variable "azure_resource_group_name" { + description = "Name of the set of resources for this run" + type = string +} + variable "azure_subscription_id" { description = "Your Azure subscription ID" type = string -- 2.51.0