skip to Main Content

Azure – An argument named "resource_group_name" is not expected here

I was looking at a GitHub project ibm-cloud-architecture/terraform-openshift4-azure to install OpenShift using Terraform. Using Terraform 1.3.7 this project fails on the following code resource "azurerm_lb_backend_address_pool" "internal_lb_controlplane_pool_v4" { count = var.use_ipv4 ? 1 : 0 resource_group_name = var.resource_group_name loadbalancer_id = azurerm_lb.internal.id…

VIEW QUESTION

Number of deleted messages is twice as many as received messages

I created SQS service with terraform resource "aws_sqs_queue" "ses_queue" { name = "ses_queue" message_retention_seconds = 86400 receive_wait_time_seconds = 1 visibility_timeout_seconds = 15 } resource "aws_lambda_event_source_mapping" "send_email_message" { event_source_arn = aws_sqs_queue.ses_queue.arn function_name = aws_lambda_function.send_email_message.function_name batch_size = 5 } I am sending…

VIEW QUESTION

Cannot create an Azure Application gateway using Terraform

I'm trying to create an instance of Application Gateway. While doing so, I get the following error: Error: creating Application Gateway: (Name "name-gateway-wgrkecswbk" / Resource Group "name03n62mct"): network.ApplicationGatewaysClient#CreateOrUpdate: Failure sending request: StatusCode=400 -- Original Error: Code="InvalidResourceName" Message="Resource name is invalid.…

VIEW QUESTION
Back To Top
Search