Skip to content

Commit

Permalink
using .ir instead of .com for API.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alireza Karami committed Nov 22, 2022
1 parent 90f8802 commit 7ae21ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
# Terraform Provider for ArvanCloud

### How to use
1. Get an API Key from [ArvanCloud Dashboard](https://panel.arvancloud.com/profile/api-keys)
1. Get an API Key from [ArvanCloud Dashboard](https://panel.arvancloud.ir/profile/api-keys)
2. Create a `main.tf` file and put the following content into (boilerplate):
```tf
terraform {
required_providers {
arvan = {
source = "arvancloud/arvan"
version = "0.6.3" # put the version here
version = "0.6.4" # put the version here
}
}
}
Expand All @@ -35,7 +35,7 @@ terraform {
required_providers {
arvan = {
source = "arvancloud/arvan"
version = "0.6.3"
version = "0.6.4"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion internal/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

const (
BasePath = "https://napi.arvancloud.com"
BasePath = "https://napi.arvancloud.ir"
DefaultTimeout = 1 * time.Minute
RequesterContext = "requesterContext"
)
Expand Down

0 comments on commit 7ae21ab

Please sign in to comment.