-
Notifications
You must be signed in to change notification settings - Fork 38
/
component.yaml
1437 lines (1332 loc) · 58.3 KB
/
component.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
documentation_complete: false
schema_version: 3.1.0
name: Universal Control Plane (UCP)
references:
- name: UCP Documentation
path: https://docs.docker.com/datacenter/ucp/2.2/guides/
type: URL
satisfies:
- control_key: AC-2 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, supporting documentation for managing users and teams can
found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-teams/'
standard_key: NIST-800-53
- control_key: AC-2 (7)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- key: a
text: |
'To assist the organization in meeting the requirements of this
control, supporting documentation can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/'
standard_key: NIST-800-53
- control_key: AC-2 (12)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, Universal Control Plane can be configured to send system
account log data to a remote logging service such as an Elasticsearch,
Logstash and Kibana (ELK) stack. Supporting documentation can be found
at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/monitor-and-troubleshoot/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/monitor-and-troubleshoot/troubleshoot-node-messages/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/monitor-and-troubleshoot/troubleshoot-with-logs/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/monitor-and-troubleshoot/troubleshoot-configurations/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/monitor-and-troubleshoot/troubleshoot-task-state/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/
- https://success.docker.com/Architecture/Docker_Reference_Architecture%3A_Docker_Logging_Design_and_Best_Practices'
parameters:
- key: "AC-2(12)(a)"
text: |
"customer-defined atypical use"
- key: "AC-2(12)(b)"
text: |
"at a minimum, the ISSO and/or similar role within the organization"
standard_key: NIST-800-53
- control_key: AC-3
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'One can control which users and teams can create and manipulate
Universal Control Plane resources. By default, no one can make changes
to the cluster. Permissions can be granted and managed to enforce
fine-grained access control. Supporting documentation can be found at
the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/deploy-view-only-service/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/grant-permissions/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/isolate-nodes-between-teams/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/isolate-volumes-between-teams/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/manage-access-with-collections/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/access-control-node/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
standard_key: NIST-800-53
- control_key: AC-4
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'Supporting documentation to configure Universal Control Plane to meet
the requirements of this control can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/architecture/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/install/system-requirements/#ports-used
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/use-domain-names-to-access-services/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/restrict-services-to-worker-nodes/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Universal_Control_Plane_2.0_Service_Discovery_and_Load_Balancing
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#Infrastructure_Considerations
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#Networking'
parameters:
- key: "AC-4"
text: |
"customer-defined information flow control policies"
standard_key: NIST-800-53
- control_key: AC-4 (8)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Supporting documentation to configure Universal Control Plane to meet
the requirements of this control can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/architecture/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/install/system-requirements/#/ports-used
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/use-domain-names-to-access-services/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/restrict-services-to-worker-nodes/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Universal_Control_Plane_2.0_Service_Discovery_and_Load_Balancing
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#Infrastructure_Considerations
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#Networking'
parameters:
- key: "AC-4(8)(a)"
text: |
"FedRAMP assignment: security policy filters inherent in boundary
protection devices such as gateways, routers, guards, encrypted
tunnels, firewalls"
- key: "AC-4(8)(b)"
text: |
"FedRAMP assignment: information containing PII or organization
sensitive information types"
standard_key: NIST-800-53
- control_key: AC-4 (21)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Supporting documentation to configure Universal Control Plane to meet
the requirements of this control can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/architecture/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/install/system-requirements/#/ports-used
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/use-domain-names-to-access-services/
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/restrict-services-to-worker-nodes/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Universal_Control_Plane_2.0_Service_Discovery_and_Load_Balancing
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#Infrastructure_Considerations
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#Networking'
parameters:
- key: "AC-4(21)-1"
text: |
"customer-defined mechanisms and/or techniques"
- key: "AC-4(21)-2"
text: |
"customer-defined required separation by types of information"
standard_key: NIST-800-53
- control_key: AC-5
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can control which users and teams can create and
manipulate Universal Control Plane resources. By default, no one can
make changes to the cluster. Permissions can be granted and managed to
enforce fine-grained access control. Supporting documentation can be
found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-5(a)"
text: |
"customer-defined duties of individuals"
standard_key: NIST-800-53
- control_key: AC-6
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can control which users and teams can create and
manipulate Universal Control Plane resources and employ principles of
least privilege. By default, no one can make changes to the cluster.
Permissions can be granted and managed to enforce fine-grained access
control. Supporting documentation can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
standard_key: NIST-800-53
- control_key: AC-6 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can control which users and teams can create and
manipulate Universal Control Plane resources and explicitly authorize
access as necessary. By default, no one can make changes to the
cluster. Permissions can be granted and managed to enforce
fine-grained access control. Supporting documentation can be found at
the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-6(1)"
text: |
"FedRAMP assignment: all functions not publiclly accessible and all
security-relevant information not publicly available"
standard_key: NIST-800-53
- control_key: AC-6 (2)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can control which users and teams can create and
manipulate Universal Control Plane resources. By default, no one can
make changes to the cluster. Permissions can be granted and managed to
enforce fine-grained access control. Supporting documentation can be
found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-6(2)"
text: |
"FedRAMP requirement: all security functions"
standard_key: NIST-800-53
- control_key: AC-6 (3)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can control which users and teams can create and
manipulate Universal Control Plane resources, including Docker
networking components. By default, no one can make changes to the
cluster. Permissions can be granted and managed to enforce
fine-grained access control. Supporting documentation can be found at
the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-6(3)-1"
text: |
"privileged commands used to change/configure network devices"
- key: "AC-6(3)-2"
text: |
"customer-defined operational needs"
standard_key: NIST-800-53
- control_key: AC-6 (5)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can restrict privileged accounts within Universal Control
Plane to custom-defined roles. By default, no one can make changes to
the cluster. Permissions can be granted and managed to enforce
fine-grained access control. Supporting documentation can be found at
the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-6(5)"
text: |
"customer-defined personnel or roles"
standard_key: NIST-800-53
- control_key: AC-6 (7)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To assist the organization in meeting the requirements of this
control, one can review all implemented grants, accounts and roles
within Universal Control Plane and reassign/revoke privileges as
necessary. Supporting documentation can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-6(7)(a)-1"
text: |
"at least annually"
- key: "AC-6(7)(a)-2"
text: |
"all users"
standard_key: NIST-800-53
- control_key: AC-6 (8)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'Universal Control Plane users can be assigned to one of a number of
different permission levels. The permission level assigned to a
specific user determines that user''s ability to execute certain
Docker functions within UCP. Only users mapped to either the "Full
Control" or "Admin" roles can execute Docker commands without any
restrictions. Users mapped to either the "View Only" or "No Access"
roles cannot execute any Docker commands. Users assigned to the
"Restricted Control" role can only run Docker commands under their own
purview and cannot see other users UCP resources nor run commands that
required privileged access to the host. Furthermore, custom roles can
be created for fine-grained access to specific UCP resources and
functionality. Additional documentation regarding the various
permission levels within UCP can be found at the following resource:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/create-and-manage-users/
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/permission-levels/
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Docker_Datacenter_Best_Practices_and_Design_Considerations#RBAC_and_Managing_Team_Level_Access_to_Resources
- https://success.docker.com/KBase/Docker_Reference_Architecture%3A_Securing_Docker_Datacenter_and_Security_Best_Practices#RBAC'
parameters:
- key: "AC-6(8)"
text: |
"FedRAMP assignment: any software except software explicitly
documented"
standard_key: NIST-800-53
- control_key: AC-6 (10)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'One can control which users and teams can create and manipulate
Universal Control Plane resources and prevent non-privileged users
from executing privileged functions per the requirements of this
control. By default, no one can make changes to the cluster.
Permissions can be granted and managed to enforce fine-grained access
control. Supporting documentation for the configuration of this
functionality can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/access-control/'
standard_key: NIST-800-53
- control_key: AC-12 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'Universal Control Plane includes a logout capability that allows a
user to terminate his/her current session.'
parameters:
- key: "AC-12(1)(a)"
text: |
"customer-defined information resources"
standard_key: NIST-800-53
- control_key: AC-14
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'To help the organization meet the requirements of this control, a
review of actions allowed by unauthenticated users can be performed
within Universal Control Plane.'
parameters:
- key: "AC-14(a)"
text: |
"customer-defined user actions"
standard_key: NIST-800-53
- control_key: AC-17
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To help the organization meet the requirements of this control,
Universal Control Plane can be configured to allow/prohibit remote
access.'
standard_key: NIST-800-53
- control_key: AC-17 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'Universal Control Plane logs and controls all local and remote
access events. In addition, auditing can be configured on the
underlying operating system to meet this control.'
standard_key: NIST-800-53
- control_key: AC-17 (2)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
narrative:
- text: |
'All remote access sessions to Universal Control Plane are protected
with Transport Layer Security (TLS) 1.2. This is included at both the
HTTPS application layer for access to the UCP user interface and for
command-line based connections to the cluster. In addition to this,
all communication to UCP is enforced by way of two-way mutual TLS
authentication.'
standard_key: NIST-800-53
- control_key: AC-17 (3)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'A combination of managed load balancers, firewalls and access control
lists, and virtual networking resources can be used to ensure traffic
destined for Universal Control Plane managers and worker nodes is
routed through managed network access control points.'
parameters:
- key: "AC-17(3)"
text: |
"customer-defined"
standard_key: NIST-800-53
- control_key: AC-17 (4)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To help the organization meet the requirements of this control,
Universal Control Plane can be configured to authorize certain
privileged functions via remote access.'
parameters:
- key: "AC-17(4)(a)"
text: |
"customer-defined needs"
standard_key: NIST-800-53
- control_key: AC-17 (9)
covered_by: []
implementation_statuses:
- none
- partial
control_origins:
- service provider hybrid
- configured by customer
narrative:
- text: |
'Built-in firewall technology in Universal Control Plane's underlying
operating system can be used to force the disconnection of remote
connections to the host. In addition, UCP provides the option to pause
or drain a node in the cluster, which subsequently stops and/or
removes sessions to the node. Individual services and/or applications
running on a UCP cluster can also be stopped and/or removed.'
parameters:
- key: "AC-17(9)"
text: |
"FedRAMP requirement: no greater than fifteen minutes"
standard_key: NIST-800-53
- control_key: AC-20
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To help the organization meet the requirements of this control, one
can control which external systems can access Universal Control
Plane.'
standard_key: NIST-800-53
- control_key: AC-20 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'To help the organization meet the requirements of this control, one
can control which external systems can access Universal Control
Plane.'
standard_key: NIST-800-53
- control_key: AC-21
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
- shared
narrative:
- text: |
'To help the organization meet the requirements of this control, one
can validate the assigned roles and access levels within Universal
Control Plane to control information sharing.'
parameters:
- key: "AC-21(a)"
text: |
"customer-defined information sharing circumstances"
- key: "AC-21(b)"
text: |
"customer-defined automated mechanisms or manual processes"
standard_key: NIST-800-53
- control_key: AU-2
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
- shared
narrative:
- key: a
text: |
'All of the event types indicated by this control are logged by the
backend ucp-controller service within Universal Control Plane. In
addition, each container created on a Universal Control Plane cluster
logs event data. Supporting documentation for configuring UCP logging
can be referenced at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-2(a)"
text: |
"FedRAMP requirement: successful and unsuccessful account logon
events, account management events, object access, policy change,
privileged functions, process tracking, and system events. For Web
applications: all administrator activity, authentication checks,
authorization checks, data deletions, data access, data changes, and
permission changes"
- key: "AU-2(d)"
text: |
"FedRAMP requirement: organization-defined subset of the auditable
events defined in AU-2-a. to be audited continually for each
identified event"
standard_key: NIST-800-53
- control_key: AU-3
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane generates all of the audit record information
indicated by this control. A sample audit event has been provided
below:
{"level":"info","license_key":"123456789123456789123456789","msg":"eNZi:Password
based auth
suceeded","remote_addr":"192.168.33.1:55905","time":"2016-11-09T22:41:01Z","type":"auth
ok","username":"dockeruser"}'
standard_key: NIST-800-53
- control_key: AU-3 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be used to
interpolate the information defined by this control from the logged
audit records. Additional documentation can be found at the following
resource:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-3(1)"
text: |
"FedRAMP requirement: session, connection, trasaction, or activity
duration; for client-server transactions, the number of bytes received
and bytes sent, additional informational messages to diagnose or
identify the event, characteristics that describe or identify the
object or resource being acted upon"
standard_key: NIST-800-53
- control_key: AU-3 (2)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be used to
interpolate the information defined by this control from the logged
audit records. Additional documentation can be found at the following
resource:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-3(2)"
text: |
"all network, data storage, and computing devices"
standard_key: NIST-800-53
- control_key: AU-5
covered_by: []
implementation_status: none
control_origin: "service provider system specific"
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be configured to
alert individuals in the event of log processing failures. Additional
information can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-5(a)"
text: |
"customer-defined personnel or roles"
- key: "AU-5(b)"
text: |
"FedRAMP requirement: low-impact: overwrite oldest audit records;
moderate-impact: shut down"
standard_key: NIST-800-53
- control_key: AU-5 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be configured to
warn the organization when the allocated log storage is full.
Additional information can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-5(1)-1"
text: |
"appropriate service team personnel, customer-defined personnel"
- key: "AU-5(1)-2"
text: |
"24 hours, customer-defined time period"
- key: "AU-5(1)-3"
text: |
"a service team defined percentage, customer-defined percentage"
standard_key: NIST-800-53
- control_key: AU-5 (2)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be configured to
warn the organization when audit log failures occur. Additional
information can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-5(2)-1"
text: |
"real-time"
- key: "AU-5(2)-2"
text: |
"appropriate service team personnel"
- key: "AU-5(2)-3"
text: |
"events defined by each service team, audit failure events requiring
real-time alerts, as defined by organization audit policy"
standard_key: NIST-800-53
- control_key: AU-6 (4)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The organization can subsequently centrally review and
analyze all of the Docker EE audit records. Additional information can
be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
standard_key: NIST-800-53
- control_key: AU-7
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- key: a
text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be used to
facilitate the audit reduction and report generation requirements of
this control. Additional information can be found at the following
resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
- key: b
text: |
'The underlying operating system chosen to support Universal Control
Plane should be certified to ensure that logs are not altered during
generation and transmission to a remote logging stack.'
standard_key: NIST-800-53
- control_key: AU-7 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- text: |
'Universal Control Plane can be configured to log data to a remote
logging stack. The logging stack can subsequently be configured to
parse information by organization-defined audit fields. Additional
information can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-7(1)"
text: |
"customer-defined audit fields within audit records"
standard_key: NIST-800-53
- control_key: AU-8
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- key: a
text: |
'Universal Control Plane uses the system clock of the underlying
operating system on which it runs. This behavior cannot be modified.'
- key: b
text: |
'The underlying operating system on which Universal Control Plane runs
should be configured such that its system clock uses Coordinated
Universal Time (UTC) as indicated by this control. Refer to the
operating system's instructions for doing so.'
parameters:
- key: "AU-8(b)"
text: |
"millisecond precision"
standard_key: NIST-800-53
- control_key: AU-8 (1)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- key: a
text: |
'The underlying operating system on which Universal Control Plane runs
should be configured such that its system clock compares itself with
an authoritative time source as indicated by this control. This can be
accomplished by utilizing the Network Time Protocol (NTP). Refer to
the operating system's instructions for doing so.'
- key: b
text: |
'The underlying operating system on which Universal Control Plane runs
should be configured such that its system clock synchronizes itself to
an authoritative time source as defined by part (a) of this control
any time the time difference exceeds that of the organization-defined
time period. This can be accomplished by utilizing the Network Time
Protocol (NTP). Refer to the operating system's instructions for doing
so.'
parameters:
- key: "AU-8(1)(a)-1"
text: |
"FedRAMP requirement: at least hourly"
- key: "AU-8(1)(a)-2"
text: |
"FedRAMP requirement: authoritative time source:
http://tf.nist.gov/tf-cgi/servers.cgi"
- key: "AU-8(1)(b)"
text: |
"customer-defined"
standard_key: NIST-800-53
- control_key: AU-9
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'By default, Universal Control Plane is configured to use the
underlying logging capabilities of Docker Enterprise Edition. As such,
on the underlying Linux operating system, only root and sudo users and
users that have been added to the 'docker' group have the ability to
access the logs generated by UCP backend service containers. In
addition, only UCP Administrator users can change the logging endpoint
of the system should it be decided that logs be sent to a remote
logging stack. In this case, the organization is responsible for
configuring the remote logging stack per the provisions of this
control.'
standard_key: NIST-800-53
- control_key: AU-9 (2)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'Universal Control Plane can be configured to send logs to a remote
logging stack. The logging stack can subsequently be configured to
back up audit records per the schedule defined by this control.
Additional information can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-9(2)"
text: |
"FedRAMP requirement: at least weekly"
standard_key: NIST-800-53
- control_key: AU-9 (3)
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
narrative:
- text: |
'Universal Control Plane can be configured to send logs to a remote
logging stack. The logging stack can subsequently be configured to
meet the encryption mechanisms required by this control. Additional
information can be found at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
standard_key: NIST-800-53
- control_key: AU-11
covered_by: []
implementation_statuses:
- none
control_origins:
- service provider hybrid
- shared
narrative:
- text: |
'The organization will be responsible for meeting the requirements of
this control. To assist with these requirements, Universal Control
Plane can be configured to send logs to a remote logging stack. This
logging stack can subsequently be configured retain logs for the
duration required by this control. Additional information can be found
at the following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
parameters:
- key: "AU-11"
text: |
"FedRAMP requirement: at least one year"
standard_key: NIST-800-53
- control_key: AU-12
covered_by: []
implementation_statuses:
- none
control_origins:
- Docker EE system
- shared
narrative:
- key: a
text: |
'All of the event types indicated by AU-2 a. are logged by the backend
ucp-controller service within Universal Control Plane. In addition,
each container created on a Universal Control Plane cluster logs event
data. The underlying Linux operating system supporting UCP can be
configured to audit Docker-specific events with the auditd daemon.
Refer to the specific Linux distribution in use for instructions on
configuring this service. Additional information can be found at the
following resources:
- https://docs.docker.com/datacenter/ucp/2.2/guides/admin/configure/store-logs-in-an-external-system/'
- key: b
text: |
'Using auditd on the Linux operating system supporting UCP, the
organization can configure audit rules to select which Docker-specific
events are to be audited. Refer to the specific Linux distribution in
use for instructions on configuring this service.'