diff --git a/specs/newton/approved/define-the-audit-scope.rst b/specs/newton/approved/define-the-audit-scope.rst index 44d429b..8414613 100644 --- a/specs/newton/approved/define-the-audit-scope.rst +++ b/specs/newton/approved/define-the-audit-scope.rst @@ -70,9 +70,9 @@ an array of resource uuid(s): "scope": [ {"host_aggregates": [ - {"id": "1"}, - {"id": "2"}, - {"id": "3"} + {"id": 1}, + {"id": 2}, + {"id": 3} ]}, {"availability_zones": [ {"name": "AZ1"}, @@ -174,11 +174,11 @@ Zones and some objects to exclude: "goal": "MINIMIZE_ENERGY", "scope": [{ "host_aggregates": [{ - "id": "1" + "id": 1 }, { - "id": "2" + "id": 2 }, { - "id": "3" + "id": 3 }] }, { "availability_zones": [{ @@ -244,6 +244,9 @@ Other deployer impact The operator may have to configure the frequency of the periodic task that regularly checks the validity of all the audit scopes. +The operator may specify not only Host Aggregates IDs, +but Host Aggregate names too (will be provided in future). + Developer impact ----------------