python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
terraform azurerm : ERROR : exit status 1 - az login required
providers.tf
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~>2.0"
}
}
}
provider "azurerm" {
feature...
Kalin-the-Builder
Votes: 0
Answers: 1
Using Terraform's helm_release, how do I set array or list values?
For example, per the helm chart documentation for Drupal, the default value for accessModes is ["ReadWriteOnce"] which translates to the following in the YAML:
...
accessModes
- ReadWriteOnc...
user658182
Votes: 0
Answers: 1
Cannot create many Azure firewall rule sets concurrently in Terraform
My Terraform code is broadly architected like so:
module "firewall_hub" {
# This creates the Azure Firewall resource
source = "/path/to/module/a"
# attribute = value......
Xophmeister
Votes: 0
Answers: 1
Terraform error: Error: creating Subnet: Original Error: Code="NetcfgInvalidSubnet" Message="Subnet 'internal' is not valid in virtual network
I am trying to create resources in azure using terraform, a SQL server database and also a virtual machine.I get the error.
│ Error: creating Subnet: (Name "db_subnetn" / Virtual Network Nam...
learner
Votes: 0
Answers: 1