magodo

Results 394 comments of magodo

Seems like Get() will return the map with all fields set (the absent field will be filled with default value of its type)

Hi @radeksimko Thank you for the clarification! I have an live example in azure land, in resource [virtual network](https://github.com/terraform-providers/terraform-provider-azurerm/blob/master/azurerm/internal/services/network/resource_arm_virtual_network.go#L99), there is a property named `subnet`, which is `O+C`. There might...

This should fix terraform-providers/terraform-provider-azurerm#5819.

Is this gonna be handled by hashicorp/terraform-plugin-framework#11?

Also observed on archlinux using the upstream package from pacman.

@cedrox Thank you for this feature request! `aztfy` leverages the ARM to learn the cross resource dependencies. Unfortunately, there is no way to export an ARM template for a whole...

@MohnJadden That is possible, however, one major problem of that is that we are importing the rg one by one, which means the ARM template is still in scope of...

@darren-mcdonald Unfortunately, the TF code is generated from the state file, which is created during the importing. This means we can't generate config without import. Also please noted that the...

@MohnJadden In this case you can repeatedly use `aztfy resource --append ` to terrafy those resources. The only thing you need to figure out is the resource id of them,...

I think explict is better than implicit. The issue here is that once resource mapping file is used, the resource type auto deduction will stop to work, but just rely...