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
Copy file name to clipboardExpand all lines: README.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ Don't forget to `source ~/.bash_profile` once you've set these.
61
61
The variables won't be set for the current session, exit the terminal and reopen.
62
62
63
63
## Deploy an example configuration
64
-
Download the [VCN example configuration.](https://github.com/oracle/terraform-provider-baremetal/tree/master/docs/examples/network/simple_vcn)
64
+
Download the [VCN example configuration.](https://github.com/oracle/terraform-provider-baremetal/tree/master/docs/examples/simple_vcn)
65
65
66
66
Edit it to include the OCID of the compartment you want to create the VCN. Remember that the tenancy OCID is the compartment OCID of your root compartment.
1. The private key you use for API access must have a passphrase to work with Terraform. You can add a passphrase to your existing key - `ssh-keygen -p -f <private key>`
85
+
### Key passphrase
86
+
The private key you use for API access must have a passphrase to work with Terraform. You can add a passphrase to your existing key with `ssh-keygen -p -f <private key>`.
86
87
87
-
2. The provider doesn't always wait for resources to transition to 'AVAILABLE' before exiting and will throw an error if any resource isn't 'AVAILABLE' when the configuration has finished being applied. You can safely ignore these errors.
88
+
If you don't want to apply a passphrase to the version of the key you don't use with Terraform you can copy the key first -
89
+
```
90
+
cp <private key> <private key>.pass
91
+
ssh-keygen -p -f <private key>.pass
92
+
```
93
+
### DB Systems timeout
94
+
DB Systems can take up to an hour to provision. Terraform times out after 5 minutes. Ensure the DB System is the last resource you provision in a configuration.
95
+
96
+
### Block volumes
97
+
The size of a block volume cannot be specified, volumes created by Terraform are 256GB.
88
98
89
99
#### About the provider
90
100
This provider was written on behalf of Oracle by [MustWin.](http://mustwin.com/)
0 commit comments