Skip to content

Commit 6e96d6b

Browse files
author
ccushing
committed
Readme for Terraform 0.9.x
1 parent 5fe50e5 commit 6e96d6b

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

Makefile

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,12 @@ build: test
2424
cross: test_acceptance
2525
gox -output "./bin/{{.OS}}_{{.Arch}}/terraform-provider-baremetal"
2626

27-
.PHONY: clean fmt build cross test test_unit
27+
zip:
28+
cd bin \
29+
&& zip -r windows.zip windows_386 windows_amd64 \
30+
&& tar -czvf darwin.tar.gz darwin_386 darwin_amd64 \
31+
&& tar -czvf freebsd.tar.gz freebsd_386 freebsd_amd64 freebsd_arm \
32+
&& tar -czvf linux.tar.gz linux_386 linux_amd64 linux_arm \
33+
&& tar -czvf openbsd.tar.gz openbsd_386 openbsd_amd64
34+
35+
.PHONY: clean fmt build cross test test_unit zip

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,17 @@ Oracle customers now have access to an enterprise class, developer friendly orch
1010
This Terraform provider is OSS, available to all OBMCS customers at no charge.
1111

1212
## Compatibility
13-
The provider is compatible with Terraform .8.\*, **.8.8 is recommended.** .9.\* compatibility is in the works.
13+
The provider is compatible with Terraform .9.\*.
1414

1515
### Coverage
16-
The Terraform provider provides coverage for the entire BMC API excluding the Load Balancer Service, expected first half of April 2017.
16+
The Terraform provider provides coverage for the entire BMC API, with some minor exceptions.
1717

1818
## Getting started
1919
Be sure to read the FAQ and Writing Terraform configurations for OBMCS in [/docs](https://github.com/oracle/terraform-provider-baremetal/tree/master/docs).
2020

2121
### Download Terraform
22-
Find the appropriate **.8.8 binary** for your platform, download it.
23-
* [OSX, macOS (x64)](https://releases.hashicorp.com/terraform/0.8.8/terraform_0.8.8_darwin_amd64.zip)
24-
* [Linux (x64)](https://releases.hashicorp.com/terraform/0.8.8/terraform_0.8.8_linux_amd64.zip)
25-
* [Windows (x64)](https://releases.hashicorp.com/terraform/0.8.8/terraform_0.8.8_windows_amd64.zip)
26-
27-
[Other platforms](https://releases.hashicorp.com/terraform/0.8.8/)
22+
Download the appropriate **.9.x binary** for your platform.
23+
https://www.terraform.io/downloads.html
2824

2925
### Install Terraform
3026
https://www.terraform.io/intro/getting-started/install.html
@@ -63,7 +59,11 @@ export TF_VAR_user_ocid=
6359
export TF_VAR_fingerprint=
6460
export TF_VAR_private_key_path=<fully qualified path>`
6561
```
66-
Don't forget to `source ~/.bash_profile` once you've set these.
62+
63+
Once you've set these values open a new terminal or source your profile changes
64+
```
65+
$ source ~/.bash_profile
66+
```
6767

6868
#### Windows
6969
```
@@ -95,11 +95,9 @@ https://github.com/oracle/terraform-provider-baremetal/issues
9595
or meet us in the OBMCS forums
9696
https://community.oracle.com/community/cloud_computing/bare-metal
9797

98-
## Known serious bugs
99-
100-
[Issue #44, potential for data loss. Running apply in an enviroment where a subnet has multiple attached Security Lists can cause all of the instances in the subnet to be terminated and re-created.](https://github.com/oracle/terraform-provider-baremetal/issues/44)
98+
## Known issues
10199

102-
[Other issues](https://github.com/oracle/terraform-provider-baremetal/issues)
100+
[Github issues](https://github.com/oracle/terraform-provider-baremetal/issues)
103101

104102
## About the provider
105103
This provider was written on behalf of Oracle by [MustWin.](http://mustwin.com/)

0 commit comments

Comments
 (0)