skip to Main Content

Update existing azure subnet in Terraform

i wanted to update my exsiting subnet in Terraform, firstly i did this command terraform import 'azurerm_subnet.example' /subscriptions/id-id-id-id/resourceGroups/tfeastus/providers/Microsoft.Network/virtualNetworks/myVnetTF/subnets/SUBNET-0 the import was successfull, so i made my terraform template terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version =…

VIEW QUESTION

Update exsiting Azure App Service in Terraform

I would like to update my exsiting Azure App Service in Terraform by adding a Backup to this App Service. For now it looks like this: data "azurerm_app_service_plan" "example" { name = "MyUniqueServicePlan" resource_group_name = "example-resources" } resource "azurerm_app_service" "example"…

VIEW QUESTION

bootstrap.sh: Karpenter with custom lanuch templates

The Karpenter default OS, Amazon Linux 2 (AL2), accepts shell scripts (bash commands). Karpenter supports using custom launch templates In the default configuration, Karpenter uses an EKS optimized version of AL2 (Amazon Linux 2) (https://karpenter.sh/v0.13.2/aws/launch-templates/) and passes the hostname of…

VIEW QUESTION

Terraform template for Azure App Service, LinuxFxVersion has an invalid value

This is how my terraform template looks like: resource "azurerm_resource_group" "example" { name = "myAppServiceRG" location = var.location } resource "azurerm_service_plan" "example" { name = var.servicePlanName resource_group_name = azurerm_resource_group.example.name location = azurerm_resource_group.example.location os_type = "Linux" sku_name = var.pricingTier worker_count =…

VIEW QUESTION
Back To Top
Search