Skip to content

Commit

Permalink
Fix RDS instance resource (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolsean authored Jul 29, 2021
1 parent a826720 commit d7923fb
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 803 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ terraform-provider-sbercloud
*.json
*.yaml
.terraform/
.terraform.lock.hcl
.terraform.tfstate.lock.info

# Test binary, built with `go test -c`
*.test
Expand Down
1 change: 0 additions & 1 deletion docs/resources/rds_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ The following arguments are supported:
* `name` - (Required, String) Specifies the DB instance name. The DB instance name of the same type
must be unique for the same tenant. The value must be 4 to 64 characters in length and start with a letter.
It is case-sensitive and can contain only letters, digits, hyphens (-), and underscores (_).
Changing this parameter will create a new resource.

* `flavor` - (Required, String) Specifies the specification code.

Expand Down
2 changes: 1 addition & 1 deletion sbercloud/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func Provider() terraform.ResourceProvider {
"sbercloud_obs_bucket": huaweicloud.ResourceObsBucket(),
"sbercloud_obs_bucket_object": huaweicloud.ResourceObsBucketObject(),
"sbercloud_obs_bucket_policy": huaweicloud.ResourceObsBucketPolicy(),
"sbercloud_rds_instance": ResourceRdsInstanceV3(),
"sbercloud_rds_instance": huaweicloud.ResourceRdsInstanceV3(),
"sbercloud_rds_parametergroup": huaweicloud.ResourceRdsConfigurationV3(),
"sbercloud_rds_read_replica_instance": huaweicloud.ResourceRdsReadReplicaInstance(),
"sbercloud_sfs_access_rule": huaweicloud.ResourceSFSAccessRuleV2(),
Expand Down
Loading

0 comments on commit d7923fb

Please sign in to comment.