Skip to content

Commit a617b4a

Browse files
committed
Update README
* This is in reference to the feedback from the provider review: #68
1 parent 4cc9255 commit a617b4a

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

README.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,6 @@ resource "mongodbatlas_cluster" "test" {
2828
```
2929
Also look at the example under [/examples](/examples).
3030

31-
### Importing resources
32-
33-
Currently, only `mongodbatlas_cluster`, `mongodbatlas_database_user`, `mongodbatlas_vpc_peering_connection` and `mongodbatlas_ip_whitelist` can be imported.
34-
35-
To import any of these resources, you need the project ID (aka. group ID). This can be found in the project
36-
settings screen.
37-
38-
```
39-
# Import a cluster
40-
terraform import mongodbatlas_cluster.example <project ID>-<cluster name>
41-
42-
# Import a database user
43-
# NOTE: you'll see a plan diff for the password, this is unavoidable since the user read API omits it
44-
terraform import mongodbatlas_database_user.example <project ID>-<username>
45-
46-
# Import an ip whitelist
47-
terraform import mongodbatlas_ip_whitelist.example <project ID>-<cidr>
48-
49-
# Import an vpc peering
50-
# specify the peering connection id( pcx-xxxxxxxxx )
51-
terrform import mongodbatlas_vpc_peering_connection.example <project ID>-<pcx id>
52-
```
53-
5431
## Building the Provider
5532
Clone and build the repository
5633

@@ -59,22 +36,13 @@ go get github.com/akshaykarle/terraform-provider-mongodbatlas
5936
make build
6037
```
6138

62-
Symlink the binary to your terraform plugins directory:
63-
64-
```sh
65-
ln -s $GOPATH/bin/terraform-provider-mongodbatlas ~/.terraform.d/plugins/
66-
```
67-
6839
## Updating the Provider
6940

7041
```sh
7142
go get -u github.com/akshaykarle/terraform-provider-mongodbatlas
7243
make build
7344
```
7445

75-
## NOTE
76-
The `mongodbatlas_container` resource does not destroy the container (vpc) in mongo atlas. This is due to a limitation of the mongo atlas API as it doesn't support deleting this resource.
77-
7846
## Contributing
7947
* Install project dependencies: `go get github.com/kardianos/govendor`
8048
* Run tests: `make test`

0 commit comments

Comments
 (0)