skip to Main Content

error with azure terraform script to create vm

i have a terraform code in main.tf and outputs.tf and i have an error about key vault, this section is available on my azure dashboard : module.virtual_machine.azurerm_key_vault_secret.client_credentials_login: Still creating... [6m20s elapsed] module.virtual_machine.azurerm_key_vault_secret.client_credentials_password: Still creating... [6m20s elapsed] │ Error: checking for…

VIEW QUESTION

Amazon web services – An argument named "vpc_security_group_ids" is not expected here … not sure why i am getting this error

My terraform security local ec2 module looks like so resource "aws_instance" "mysql" { ami = data.aws_ami.latest_amazon_linux.id instance_type = var.instance_type # override this at module call key_name = aws_key_pair.my_local_pubkey.key_name # override this at module call vpc_security_group_ids = [var.default_sg] # override security…

VIEW QUESTION
Back To Top
Search