Skip to content

Commit 6276aa1

Browse files
authored
fix(resource_organization): undefined attribut project_id denouche#63 (denouche#64)
1 parent 48ce38f commit 6276aa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

awx/resource_organization.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func resourceOrganizationsCreate(ctx context.Context, d *schema.ResourceData, m
8888
diags = append(diags, diag.Diagnostic{
8989
Severity: diag.Error,
9090
Summary: "Unable to create Organizations",
91-
Detail: fmt.Sprintf("Organizations with name %s in the project id %d, failed to create %s", d.Get("name").(string), d.Get("project_id").(int), err.Error()),
91+
Detail: fmt.Sprintf("Organizations with name %s, failed to create %s", d.Get("name").(string), err.Error()),
9292
})
9393
return diags
9494
}

0 commit comments

Comments
 (0)