Skip to content

Commit dde3367

Browse files
authored
Update support documentation (#299)
1 parent 6b8895b commit dde3367

File tree

7 files changed

+23
-12
lines changed

7 files changed

+23
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
## UNRELEASED
22

3+
## 0.11.1 (February 3, 2024)
4+
35
NOTES:
46

57
* Added support for the `morpheus_clouds` data source to lookup clouds and return a list of cloud ids. [233](https://github.com/gomorpheus/terraform-provider-morpheus/issues/233)
68
* Update the `morpheus_chef_bootstrap_task` example to fix a typo referencing the server id attribute as `server_id` instead of `chef_server_id`.
79
* Added support for the `morpheus_networks` data source to lookup networks and return a list of network ids. [280](https://github.com/gomorpheus/terraform-provider-morpheus/issues/280)
10+
* Documented the support model for the Terraform provider and where to report issues.
811

912
FEATURES:
1013

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,21 @@
66

77
- Website: https://www.morpheusdata.com/
88
- Docs: [Morpheus Documentation](https://docs.morpheusdata.com)
9-
- Support: [Morpheus Support](https://support.morpheusdata.com)
10-
119

1210
This is the Terraform provider for the Morpheus Data Cloud Management Platform (CMP). It interfaces with the [Morpheus API](https://apidocs.morpheusdata.com/) using the morpheus-go-sdk client. Like all [Terraform Providers](https://github.com/terraform-providers/), it is written in Go.
1311

1412
This is being developed in conjunction with [morpheus-go-sdk](https://github.com/gomorpheus/morpheus-go-sdk).
1513

14+
## Support
15+
------------
16+
The Morpheus Terraform provider uses a community support model. Morpheus welcomes pull requests and responds to issues on a best-effort basis.
17+
18+
**Reporting an issue**
19+
20+
If you an encounter an issue with the Terraform provider, create a new issue in this GitHub repository.
21+
22+
https://github.com/gomorpheus/terraform-provider-morpheus/issues
23+
1624
## Requirements
1725
------------
1826

docs/guides/getting_started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
morpheus = {
2727
source = "gomorpheus/morpheus"
28-
version = "0.11.0"
28+
version = "0.11.1"
2929
}
3030
}
3131
}
@@ -59,9 +59,9 @@ $ terraform init
5959
Initializing the backend...
6060
6161
Initializing provider plugins...
62-
- Finding morpheusdata.com/gomorpheus/morpheus versions matching "0.11.0"...
63-
- Installing morpheusdata.com/gomorpheus/morpheus v0.11.0...
64-
- Installed morpheusdata.com/gomorpheus/morpheus v0.11.0 (unauthenticated)
62+
- Finding morpheusdata.com/gomorpheus/morpheus versions matching "0.11.1"...
63+
- Installing morpheusdata.com/gomorpheus/morpheus v0.11.1...
64+
- Installed morpheusdata.com/gomorpheus/morpheus v0.11.1 (unauthenticated)
6565
6666
Terraform has created a lock file .terraform.lock.hcl to record the provider
6767
selections it made above. Include this file in your version control repository

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
morpheus = {
2727
source = "gomorpheus/morpheus"
28-
version = "0.10.0"
28+
version = "0.11.1"
2929
}
3030
}
3131
}

examples/guides/getting_started/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
morpheus = {
44
source = "gomorpheus/morpheus"
5-
version = "0.11.0"
5+
version = "0.11.1"
66
}
77
}
88
}

examples/provider/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
morpheus = {
44
source = "gomorpheus/morpheus"
5-
version = "0.10.0"
5+
version = "0.11.1"
66
}
77
}
88
}

templates/guides/getting_started.md.tmpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ $ terraform init
3737
Initializing the backend...
3838

3939
Initializing provider plugins...
40-
- Finding morpheusdata.com/gomorpheus/morpheus versions matching "0.11.0"...
41-
- Installing morpheusdata.com/gomorpheus/morpheus v0.11.0...
42-
- Installed morpheusdata.com/gomorpheus/morpheus v0.11.0 (unauthenticated)
40+
- Finding morpheusdata.com/gomorpheus/morpheus versions matching "0.11.1"...
41+
- Installing morpheusdata.com/gomorpheus/morpheus v0.11.1...
42+
- Installed morpheusdata.com/gomorpheus/morpheus v0.11.1 (unauthenticated)
4343

4444
Terraform has created a lock file .terraform.lock.hcl to record the provider
4545
selections it made above. Include this file in your version control repository

0 commit comments

Comments
 (0)