From 0ea5ec0de82fec565dd558874f72ab722bad8b32 Mon Sep 17 00:00:00 2001 From: magodo Date: Tue, 24 Oct 2023 09:58:46 +0800 Subject: [PATCH] Update readme to mention that both azurerm and azapi are supported --- Makefile | 14 -------------- README.md | 4 +++- 2 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 81743ff..0000000 --- a/Makefile +++ /dev/null @@ -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 ./... diff --git a/README.md b/README.md index 0ac7ce3..877a9e8 100644 --- a/README.md +++ b/README.md @@ -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