Rename admin_* resources to plain names

This commit is contained in:
Gavin Bunney
2019-10-10 11:46:28 -07:00
parent 66696e3785
commit e01c73392b
7 changed files with 49 additions and 49 deletions

View File

@@ -174,7 +174,7 @@ $ terraform import bitbucketserver_user.test mreynolds
### Set Server License
```hcl
resource "bitbucketserver_admin_license" "main" {
resource "bitbucketserver_license" "main" {
license = "AAACLg0ODAoPeNqNVEtv4jAQvudXRNpbp"
}
```
@@ -200,14 +200,14 @@ Additional to the above, the following attributes are emitted:
#### Import License
```bash
$ terraform import bitbucketserver_admin_license.main license
$ terraform import bitbucketserver_license.main license
```
### Set Mail Server Configuration
```hcl
resource "bitbucketserver_admin_mail_server" "mail" {
resource "bitbucketserver_mail_server" "mail" {
hostname = "mail.example.com"
port = 465
protocol = "SMTPS"
@@ -227,7 +227,7 @@ resource "bitbucketserver_admin_mail_server" "mail" {
#### Import Mail Configuration
```bash
$ terraform import bitbucketserver_admin_mail_server.mail mail.example.com
$ terraform import bitbucketserver_mail_server.mail mail.example.com
```
---