Skip to content

Commit

Permalink
Merge pull request hashicorp#512 from sl1pm4t/fix-pki-urls-update
Browse files Browse the repository at this point in the history
Fix PKI Config URLs Update
  • Loading branch information
tyrannosaurus-becks authored Sep 3, 2019
2 parents 42ddbe3 + f0a3a72 commit 05925da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vault/resource_pki_secret_backend_config_urls.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func pkiSecretBackendConfigUrlsRead(d *schema.ResourceData, meta interface{}) er
func pkiSecretBackendConfigUrlsUpdate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*api.Client)

backend := d.Id()
backend := d.Get("backend").(string)

path := pkiSecretBackendConfigUrlsPath(backend)

Expand Down

0 comments on commit 05925da

Please sign in to comment.