diff --git a/vault/resource_rabbitmq_secret_backend.go b/vault/resource_rabbitmq_secret_backend.go index 51b42b159..962df3542 100644 --- a/vault/resource_rabbitmq_secret_backend.go +++ b/vault/resource_rabbitmq_secret_backend.go @@ -57,20 +57,17 @@ func rabbitMQSecretBackendResource() *schema.Resource { "connection_uri": { Type: schema.TypeString, Required: true, - ForceNew: true, Description: "Specifies the RabbitMQ connection URI.", }, "username": { Type: schema.TypeString, Required: true, - ForceNew: true, Sensitive: true, Description: "Specifies the RabbitMQ management administrator username", }, "password": { Type: schema.TypeString, Required: true, - ForceNew: true, Sensitive: true, Description: "Specifies the RabbitMQ management administrator password", }, @@ -78,7 +75,6 @@ func rabbitMQSecretBackendResource() *schema.Resource { Type: schema.TypeBool, Optional: true, Default: true, - ForceNew: true, Description: "Specifies whether to verify connection URI, username, and password.", }, "password_policy": { @@ -197,7 +193,7 @@ func rabbitMQSecretBackendUpdate(d *schema.ResourceData, meta interface{}) error log.Printf("[DEBUG] Updated lease TTLs for %q", path) } if d.HasChanges("connection_uri", "username", "password", "verify_connection", "username_template", "password_policy") { - log.Printf("[DEBUG] Updating connecion credentials at %q", path+"/config/connection") + log.Printf("[DEBUG] Updating connection credentials at %q", path+"/config/connection") data := map[string]interface{}{ "connection_uri": d.Get("connection_uri").(string), "username": d.Get("username").(string),