terraform-provider-azure Questions
3
Solved
As part of IaC, A Function App, lets name it FuncAppX is deployed using Terraform, which has a function with-in.
I need to access the Url of the same function with-in a function app using Terraform...
Microdont asked 20/9, 2021 at 13:15
4
I have at least 20 resources managed by my terraform configuration, i want to deploy all my resources exept one, i know that i can add "-target" parameter, but i have to specify the name ...
Delapaz asked 20/12, 2022 at 10:18
4
My terraform snippet:
variable "machine_details" {
type = object({
name = string
size = string
username = string
password = string
})
default = [
{
name = "example-vm"...
Lasser asked 13/1, 2022 at 9:54
3
Solved
I am trying to deploy a new infrastructure using terraform (for the first time) and I am getting the following error. I've tried everything but nothing seems to fix the issue.
Looks like it is aski...
Untraveled asked 1/3, 2022 at 10:44
6
Out of the box, I think azurerm_app_service provider does allow us to specify the .Net framework version, by utilising the dotnet_framework_version field.
dotnet_framework_version - (Optional) ...
Tautomer asked 13/6, 2019 at 3:55
5
Solved
Any pointers how to setup Terraform v0.14.0 on a Apple M1 , as tfenv doesn't support v0.14.0 on Apple M1
tfenv install v0.14.0
Installing Terraform v0.14.0
Downloading release tarball from https://...
Coppersmith asked 24/3, 2022 at 17:25
7
Error: Failed to get existing workspaces: containers.Client#ListBlobs: Failure responding to request: StatusCode=403 -- Original Error: autorest/azure: Service returned an error. Status=403 Code=&q...
Aweigh asked 14/11, 2022 at 12:28
4
Solved
I have created main.tf file as below for Mongodb terraform module.
resource "mongodbatlas_teams" "test" {
org_id = null
name = "MVPAdmin_Team"
usernames = ["[e...
Discount asked 2/6, 2021 at 14:52
3
I want to reference the id of subnet 2 in another resource block but the subnets don't have an index value. i.e "${azurerm_virtual_network.test.subnet.2.id}" will not work.
resource "azurerm_virt...
Odeliaodelinda asked 19/7, 2019 at 18:51
5
Solved
I am trying to use Modules for dependencies in my Terraform code. But even after mentioning that particular source path in module, it gives an error “ Module directory does not exist or cannot be r...
Plumate asked 25/3, 2020 at 11:56
3
Solved
I'm getting the following error on running terraform apply after adding an azurerm_storage_share.
Error: Error checking for existence of existing Storage Share "fileshare"
(Account "...
Saltatory asked 16/10, 2020 at 12:43
3
I can't find a way to create an application gateway via terraform with private IP without manually inserting hard coded IP private address.
I tried:
Create a private IP in the application gateway ...
Magi asked 30/6, 2021 at 20:37
4
Solved
I'm new at terraform and I created a custom azure policies on module structure.
each policy represents a custom module.
One of the modules that I have created is enabling diagnostics logs for any ...
Asante asked 7/10, 2019 at 18:30
1
I am trying to run some PostgreSQL command after creating the PostgreSQL.
First I tried to run the psql command line on my command prompt and it works. See below screenshot
The same I would like t...
Starwort asked 22/11, 2023 at 15:29
2
Solved
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
- ReadWrite...
Sheikh asked 5/4, 2022 at 14:56
4
I'm deploying web apps in Azure and I'd like to ignore changes to scm_type attribute within site_config block.
During deployment the scm_type attribute set to None and later we are changing it to ...
Nowak asked 11/7, 2019 at 14:53
7
Solved
I have the following three files as below:
main.tf, variables.tf and dev.auto.tfvars
Snippet from main.tf
module "sql_vms" {
source = "git::[email protected]:xxxxxxxxxxxx/terraform-modules/...
Potentate asked 13/6, 2020 at 14:37
3
I have created an azure app service using terraform, default it picks old style AUTH setting. As Microsoft suggest, old settings will be removed at end of this year, we would want to migrate to new...
Shaunna asked 12/11, 2021 at 16:54
3
Solved
Using Terraform, how do you enable Application Insights agent-based monitoring for
Azure App Service (.NET Core 2.x)
Azure Function App (.NET Core 2.x)
Buna asked 7/7, 2019 at 17:14
4
Solved
I am using terraform version 0.15.5 (and also 0.15.4) to provision an Azure Web App resource. The following configuration works fine:
site_config {
http2_enabled = true
always_on = false
use_32...
Sherd asked 4/6, 2021 at 11:36
2
Solved
I'm using azurerm_virtual_machine_extension to bootstrap some virtual machines in azure.
All examples i've found show using something similar to:
settings = <<SETTINGS
{
"fileUris": [ "...
Bearskin asked 8/1, 2019 at 9:9
3
Based on PR: https://github.com/terraform-providers/terraform-provider-azurerm/pull/5325
azurerm provider version 1.42.0 is required so as to by default install the cosmosdb account with server ver...
Educational asked 24/8, 2020 at 7:1
3
Solved
The following code snippet is my terraform configuration to create an Azure SignalR Service:
output "signalrserviceconnstring" {
value = azurerm_signalr_service.mysignalrservice.primary_...
Calbert asked 22/5, 2021 at 13:25
3
Solved
Setting up terraform cloud for the first time and getting this error. Not sure why as on my local machine azure CLI is installed and the path is set, but I think has something to do with setting it...
Woundwort asked 20/6, 2022 at 1:53
4
Solved
I am making use of modules. And this is the structure of my files - Provisioner and module are different folders.The main.tf in stack calls out the modules.
> provisioner
>stack
|--main....
Jojo asked 4/5, 2020 at 8:8
1 Next >
© 2022 - 2025 — McMap. All rights reserved.