From ae575fdb4a7891b2853942dfa95fdaf6382cd307 Mon Sep 17 00:00:00 2001 From: diegoazion <114952459+diegoazion@users.noreply.github.com> Date: Fri, 12 May 2023 14:33:25 -0300 Subject: [PATCH] chore: adjusting for releaser v1 #major (#53) --- CHANGELOG.md | 6 ------ docs/index.md | 10 +++++----- examples/provider/provider.tf | 10 +++++----- 3 files changed, 10 insertions(+), 16 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 932b1c0..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,6 +0,0 @@ -## 0.1.0 (March 01, 2023) - -NOTES: - --Initial structure of the Azion provider [Provider - Framework](https://developer.hashicorp.com/terraform/plugin/framework/ \ No newline at end of file diff --git a/docs/index.md b/docs/index.md index 96e198f..7664979 100644 --- a/docs/index.md +++ b/docs/index.md @@ -13,14 +13,14 @@ The Azion provider is used to interact with resources supported by Azion. The pr ## Example Usage ```terraform -# Configure the Azion provider using the required_providers stanza +# Configure the Azion provider using the required_providers # required with Terraform 0.13 and beyond. You may optionally use version # directive to prevent breaking changes occurring unannounced. terraform { required_providers { azion = { - source = "aziontech/azion" - version = "~≳ 0.2.0" + source = "registry.terraform.io/aziontech/azion" + version = "~≳ " } } } @@ -30,12 +30,12 @@ provider "azion" { } # Create a zone -resource "azion_zone" "www" { +resource "azion_zone" "example" { # ... } # Create a record -resource "azion_record" "www" { +resource "azion_record" "example" { # ... } ``` diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index bcb9866..136e083 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,11 +1,11 @@ -# Configure the Azion provider using the required_providers stanza +# Configure the Azion provider using the required_providers # required with Terraform 0.13 and beyond. You may optionally use version # directive to prevent breaking changes occurring unannounced. terraform { required_providers { azion = { - source = "aziontech/azion" - version = "~≳ 0.2.0" + source = "registry.terraform.io/aziontech/azion" + version = "~≳ " } } } @@ -15,11 +15,11 @@ provider "azion" { } # Create a zone -resource "azion_zone" "www" { +resource "azion_zone" "example" { # ... } # Create a record -resource "azion_record" "www" { +resource "azion_record" "example" { # ... } \ No newline at end of file