Update readme to mention that both azurerm and azapi are supported

This commit is contained in:
magodo 2023-10-24 09:58:46 +08:00
Родитель 74b1daf4e5
Коммит 0ea5ec0de8
2 изменённых файлов: 3 добавлений и 15 удалений

Просмотреть файл

@ -1,14 +0,0 @@
install:
@go install
gen:
@./.tools/generate-provider-resource-mapping/run.sh $(PROVIDER_DIR)
depscheck:
@echo "==> Checking source code with go mod tidy..."
@go mod tidy
@git diff --exit-code -- go.mod go.sum || \
(echo; echo "Unexpected difference in go.mod/go.sum files. Run 'go mod tidy' command or revert any go.mod/go.sum changes and commit."; exit 1)
test:
@go test ./...

Просмотреть файл

@ -7,7 +7,9 @@ A tool to bring your existing Azure resources under the management of Terraform.
## Goal
Azure Export for Terraform exports resources that are supported by the [Terraform AzureRM provider](https://github.com/hashicorp/terraform-provider-azurerm) into Terraform state and generate the corresponding Terraform configuration. Both the Terraform state and configuration are expected to be consistent with the resources' remote state, i.e., `terraform plan` shows no diff. The user then is able to use Terraform to manage these resources.
Azure Export for Terraform exports supported resources into Terraform state and generate the corresponding Terraform configuration. Both the Terraform state and configuration are expected to be consistent with the resources' remote state, i.e., `terraform plan` shows no diff. The user then is able to use Terraform to manage these resources.
It supports both the [Terraform AzureRM provider](https://github.com/hashicorp/terraform-provider-azurerm) and the [Terraform AzAPI provider](https://github.com/Azure/terraform-provider-azapi).
## Non Goal