skip to Main Content

Amazon web services – Error when trying to pass the returned value to the provider block using the null resource & local_file data block

I am seeing the following error: Failed to parse host: parse "https://"https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.xx.us-east-1.eks.amazonaws.com"n": net/url: invalid control character in URL, while performing terraform apply All I was trying to do is to use a null resource, to execute eks command, and output…

VIEW QUESTION

Error while provisioning Azure resources with Terraform using Azure Services

My code to create a Terraform configuration. Code: resource "azurerm_resource_group" "example" { name = "example-resource-group" location = "West US" } resource "azurerm_virtual_network" "example" { name = "example-vnet" address_space = ["10.0.0.0/16"] location = azurerm_resource_group.example.location resource_group_name = azurerm_resource_group.example.name } resource "azurerm_subnet" "example"…

VIEW QUESTION
Back To Top
Search