aztfexport icon indicating copy to clipboard operation
aztfexport copied to clipboard

A tool to bring existing Azure resources under Terraform's management

Results 92 aztfexport issues
Sort by recently updated
recently updated
newest added

Complete a UI review with Design team. Provide an option for user to specify file name as well so that all hcl does not end up in single file.

ui

When running the `aztfy` tool the `azurerm_frontdoor_rules_engine` resources does not get imported correctly.. It shows up as a null resource instead of populated with the needed values. ``` # import...

bug
upstream-provider

The AzureRM provider allows setting different features to change the behaviors of the resources. These behaviors might affect the way a resource is read (i.e. imported).

enhancement

azurerm_network_security_rule seams to import properties from Azure without any regard of **case sensitivity**. ``` "azurerm_network_security_rule": /SUBSCRIPTIONS/{}/RESOURCEGROUPS/{}/PROVIDERS/MICROSOFT.NETWORK/NETWORKSECURITYGROUPS/{}/SECURITYRULES/{}", ``` [Reference](https://github.com/Azure/aztfy/blob/ae5841880d2d62061b05c7449dab985bf5a535e2/mapping/mapping_gen.go#L411) A NSG rule in Azure; ```json "properties": { "securityRules": [ { "name":...

question
upstream-provider

When Azure Terrafy is initialising, long path names are cut off so you can't see the resource type or name to enter it. For example: ___/subscriptions/0000000000-000000000-00000000/resourceGroups/rg-core-infra/providers/Microsoft.Automation/automationAccounts/CoreInfraAutomationAC/connectionTypes/AzureClassicCertif ..__ _│ /subscriptions/0000000000-000000000-00000000//resourceGroups/rg-core-infra/providers/Microsoft.Automation/automationAccounts/CoreInfraAutomationAC/connectionTypes/AzureServicePrinci...__ I...

ui

Though the generated configuration contains the dependencies, while the state doesn't. This means if we don't refresh to apply the dependencies into state after running this tool, the generated state...

enhancement

There are some special terraform resources in the AzureRM provider, which is not a concrete Azure resource, but some logical concept to "associate" two concrete resources. Propose to add some...

enhancement

Hello Team, I'm getting below error when I tried to run aztfy command to import all resources inside a resource group. this resource group has around 500 resources inside it....

bug

We are trying to build out our Azure account with an Azure Active Directory B2C sub-tenant. For most of the resources in parent tenant, aztfy works fine, but we're unable...

question

This PR adds support for parallel import. Currently, the resources are imported one by one. This is because `aztfy` runs `terraform import` under the hood, which by default locks the...

enhancement