You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Go](https://golang.org/doc/install) 1.16+ (to build the provider plugin)
8
+
-[Go](https://golang.org/doc/install) 1.20+ (to build the provider plugin)
9
9
10
-
Using the Provider from Terraform registry
11
-
------------------------------------------
10
+
See wiki: https://github.com/apache/cloudstack-terraform-provider/wiki
11
+
12
+
Installing from Github Release
13
+
------------------------------
14
+
15
+
User can install the CloudStack Terraform Provider using the [Github Releases](https://github.com/apache/cloudstack-terraform-provider/releases) with the installation steps below.
16
+
17
+
Replace the `RELEASE` version with the version you're trying to install and use.
To use the locally installed provider, please use the following in your main.tf etc, and then run `terraform init`:
44
+
45
+
```
46
+
terraform {
47
+
required_providers {
48
+
cloudstack = {
49
+
source = "local/cloudstack/cloudstack"
50
+
version = "0.5.0"
51
+
}
52
+
}
53
+
}
54
+
55
+
provider "cloudstack" {
56
+
# Configuration options
57
+
}
58
+
```
59
+
60
+
Note: this can be used when users are not able to install using the Terraform registry.
61
+
62
+
Installing from Terrafrom registry
63
+
----------------------------------
12
64
To install the CloudStack provider, copy and paste the below code into your Terraform configuration. Then, run terraform init.
13
65
```sh
14
66
terraform {
15
67
required_providers {
16
68
cloudstack = {
17
69
source = "cloudstack/cloudstack"
18
-
version = "0.4.0"
70
+
version = "0.5.0"
19
71
}
20
72
}
21
73
}
@@ -24,7 +76,13 @@ provider "cloudstack" {
24
76
# Configuration options
25
77
}
26
78
```
27
-
For more details on how to install and use the provider, click [here](website/) or visit https://registry.terraform.io/providers/cloudstack/cloudstack/latest/docs
79
+
80
+
User hitting installation issue using registry can install using the local install method.
81
+
82
+
Documentation
83
+
-------------
84
+
85
+
For more details on how to use the provider, visit https://registry.terraform.io/providers/cloudstack/cloudstack/latest/docs
0 commit comments