rename resource group

This commit is contained in:
burnettk 2024-02-11 21:40:32 -05:00
parent 7b66e97da9
commit 9787f94245
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
terraform {
backend "azurerm" {
resource_group_name = "devrelasaservice"
resource_group_name = "rg-k8s"
storage_account_name = "terraformprod92"
container_name = "tfstate"
key = "prod.terraform.tfstate"
@ -47,4 +47,4 @@ resource "azurerm_kubernetes_cluster" "k8squickstart" {
tags = {
Environment = "Production"
}
}
}

View File

@ -5,7 +5,7 @@ variable "name" {
variable "resource_group_name" {
type = string
default = "devrelasaservice"
default = "rg-k8s"
}
variable "location" {