Fix error message in Azure state backend (#12424)

The error led me to try adding `resource_group` but the code wanted `resource_group_name`. This fixes the error message to match the code.
This commit is contained in:
Ash Berlin 2017-03-04 18:27:37 +00:00 committed by Paul Stack
parent 1da30ec0d7
commit 70de22253a
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ func azureFactory(conf map[string]string) (Client, error) {
if !ok {
resourceGroupName, ok := conf["resource_group_name"]
if !ok {
return nil, fmt.Errorf("missing 'resource_group' configuration")
return nil, fmt.Errorf("missing 'resource_group_name' configuration")
}
var err error