skip to Main Content

Azure – Getting access denied error after running Terraform init cmd

while running Terraform validate getting below error:- fork/exec .terraform/providers/registry.terraform.io/hashicorp/azurerm/3.14.0/windows_amd64/terraform-provider-azurerm_v3.14.0_x5.exe: Access is denied. When running Terraform Plan getting below error:- │ Error: Failed to load plugin schemas │ │ Error while loading schemas for plugin components: Failed to obtain provider schema:…

VIEW QUESTION

Azure – Error: Unsupported Terraform Core version

I have a simple terraform configuration as follows. # Terraform settings Block terraform { required_version = "~> 1.0.0" required_providers { azurerm = { source = "hashicorp/azurerm" # https://registry.terraform.io/providers/hashicorp/azurerm/latest version = "~> 3.0" } } } provider "azurerm" { features {…

VIEW QUESTION

Uploading file to ECS task – Docker

I'm trying to upload a simple .yml file when creating an ECS task via Terraform, here is the code ./main.tf: resource "aws_ecs_task_definition" "grafana" { family = "grafana" cpu = "256" memory = "512" network_mode = "awsvpc" requires_compatibilities = ["FARGATE"] container_definitions…

VIEW QUESTION
Back To Top
Search