Skip to content

Commit

Permalink
chore: adjusting for releaser v1 #major (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoazion authored May 12, 2023
1 parent 223ca2f commit ae575fd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
6 changes: 0 additions & 6 deletions CHANGELOG.md

This file was deleted.

10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "~≳ <version>"
}
}
}
Expand All @@ -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" {
# ...
}
```
Expand Down
10 changes: 5 additions & 5 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -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 = "~≳ <version>"
}
}
}
Expand All @@ -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" {
# ...
}

0 comments on commit ae575fd

Please sign in to comment.