magodo
magodo
This bug is being tracked in #2063, which I'm going to close this in favour of - would you mind subscribing to that issue for updates? Thanks!
Updated: I finally manage to do this via the following, though apparently not ideal: ```go package main import ( "fmt" "log" "slices" "github.com/hashicorp/hcl/v2" "github.com/hashicorp/hcl/v2/hclwrite" ) func main() { f, diags...
@jaredfholgate Update - AzureRM PR: https://github.com/hashicorp/terraform-provider-azurerm/pull/28674#event-16205709334 - AzureAD PR: https://github.com/hashicorp/terraform-provider-azuread/pull/1635 - Azure Backend RP: https://github.com/hashicorp/terraform/pull/36458
This validation is added in https://github.com/hashicorp/terraform-provider-azurerm/pull/24042. The reason for this specific check on the latest revision is that if you create a new ACA without specifying the latest revision, it...
Could you please share with me a minimal config that you used to work in v3.86.0, with all values interpolated, so I can take a further look?
Similar to https://github.com/hashicorp/terraform-provider-azurerm/issues/21293
@stemaMSFT Two options exist: - `--generate-mapping-file` / `-g`: This indicates to only generate the mapping file (*aztfexportResourceMapping.json*), but not do the following import/export tasks. - `--generate-import-block`: This will generate the...
I'd suggest not to do it as `-i` as it is typically used for "input" in short. Also, it is not so necessary as this option is enabled by default,...
@ttaing3 The `query` command by default only list the resource types that are supported by ARG as it uses ARG query behind the scenes. Based on [this](https://learn.microsoft.com/en-us/azure/governance/resource-graph/reference/supported-tables-resources#resources), ARG only supports...
I've used this command in my test: ``` aztfexport query --include-resource-group -r "resourceGroup =~ 'acctestRG-fwpolicy-RCG-123' and (type contains 'Microsoft.Network/firewallPolicies')" ```