File size: 159,807 Bytes
0248e50 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 | import json # You might still need json if loading task_definition.json
import os
from typing import Any, Dict, List
from aws_cdk import CfnOutput, Duration, SecretValue, Stack
from aws_cdk import aws_bedrockagentcore as bedrockagentcore
from aws_cdk import aws_codebuild as codebuild
from aws_cdk import aws_cognito as cognito
from aws_cdk import aws_dynamodb as dynamodb # Import the DynamoDB module
from aws_cdk import aws_ec2 as ec2
from aws_cdk import aws_ecr as ecr
from aws_cdk import aws_ecs as ecs
from aws_cdk import aws_elasticloadbalancingv2 as elbv2
from aws_cdk import aws_iam as iam
from aws_cdk import aws_kms as kms
from aws_cdk import aws_logs as logs
from aws_cdk import aws_s3 as s3
from aws_cdk import aws_secretsmanager as secretsmanager
from aws_cdk import aws_wafv2 as wafv2
from cdk_cloudfront_distribution import create_redaction_cloudfront_distribution
from cdk_config import (
ACCESS_LOG_DYNAMODB_TABLE_NAME,
ACM_SSL_CERTIFICATE_ARN,
AGENT_ALB_HOST_HEADER,
AGENT_ALB_LISTENER_RULE_PRIORITY,
AGENT_ALB_PATH_PREFIX_NORMALIZED,
AGENT_ALB_ROUTING,
AGENT_ALB_TARGET_GROUP_NAME,
AGENT_ENV_S3_KEY,
AGENT_GRADIO_PORT,
AGENTCORE_BEDROCK_MODEL,
AGENTCORE_CDK_DEPLOY,
AGENTCORE_NETWORK_MODE,
AGENTCORE_RUNTIME_NAME,
AGENTCORE_RUNTIME_ROLE_ARN,
AGENTCORE_TASK_ROLE_POLICY_FILES,
ALB_NAME,
ALB_NAME_SECURITY_GROUP_NAME,
ALB_TARGET_GROUP_NAME,
APP_CONFIG_ENV_BASENAME,
APP_CONFIG_ENV_FILE,
AWS_ACCOUNT_ID,
AWS_MANAGED_TASK_ROLES_LIST,
AWS_REGION,
CDK_FOLDER,
CDK_PREFIX,
CLOUDFRONT_ATTACH_SECURE_RESPONSE_HEADERS,
CLOUDFRONT_AUTH_MODE,
CLOUDFRONT_DISTRIBUTION_NAME,
CLOUDFRONT_DOMAIN,
CLOUDFRONT_ENABLE_SECURE_RESPONSE_HEADERS,
CLOUDFRONT_GEO_RESTRICTION,
CLOUDFRONT_MAGIC_LINK_COOKIE_MAX_AGE_SEC,
CLOUDFRONT_MAGIC_LINK_COOKIE_NAME,
CLOUDFRONT_PREFIX_LIST_ID,
CLUSTER_NAME,
CODEBUILD_AGENTCORE_PROJECT_NAME,
CODEBUILD_PI_PROJECT_NAME,
CODEBUILD_PROJECT_NAME,
CODEBUILD_ROLE_NAME,
COGNITO_ACCESS_TOKEN_VALIDITY,
COGNITO_ID_TOKEN_VALIDITY,
COGNITO_REDIRECTION_URL,
COGNITO_REFRESH_TOKEN_VALIDITY,
COGNITO_USER_POOL_CLIENT_NAME,
COGNITO_USER_POOL_CLIENT_SECRET_NAME,
COGNITO_USER_POOL_DOMAIN_PREFIX,
COGNITO_USER_POOL_LOGIN_URL,
COGNITO_USER_POOL_NAME,
CUSTOM_HEADER,
CUSTOM_HEADER_VALUE,
CUSTOM_KMS_KEY_NAME,
DAYS_TO_DISPLAY_WHOLE_DOCUMENT_JOBS,
ECR_AGENT_REPO_NAME,
ECR_AGENTCORE_REPO_NAME,
ECR_CDK_REPO_NAME,
ECS_AVAILABILITY_ZONE_REBALANCING,
ECS_EXECUTION_ROLE_MANAGED_POLICIES,
ECS_EXECUTION_ROLE_POLICY_ARNS,
ECS_EXECUTION_ROLE_POLICY_FILES,
ECS_EXPRESS_HEALTH_CHECK_PATH,
ECS_EXPRESS_INFRASTRUCTURE_ROLE_NAME,
ECS_EXPRESS_SERVICE_NAME,
ECS_EXPRESS_USE_PUBLIC_SUBNETS,
ECS_LOG_GROUP_NAME,
ECS_PI_EXPRESS_HEALTH_CHECK_PATH,
ECS_PI_EXPRESS_SECURITY_GROUP_NAME,
ECS_PI_EXPRESS_SERVICE_NAME,
ECS_PI_LOG_GROUP_NAME,
ECS_PI_SECURITY_GROUP_NAME,
ECS_PI_SERVICE_NAME,
ECS_PI_TASK_CPU_SIZE,
ECS_PI_TASK_DEFINITION_NAME,
ECS_PI_TASK_MEMORY_SIZE,
ECS_READ_ONLY_FILE_SYSTEM,
ECS_SECURITY_GROUP_NAME,
ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_IDS_LIST,
ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_NAMES_TO_LOOKUP,
ECS_SERVICE_CONNECT_CLIENT_SG_NAME_SUFFIX,
ECS_SERVICE_CONNECT_DISCOVERY_NAME,
ECS_SERVICE_CONNECT_DNS_NAME,
ECS_SERVICE_CONNECT_NAMESPACE,
ECS_SERVICE_CONNECT_PORT_MAPPING_NAME,
ECS_SERVICE_NAME,
ECS_TASK_CPU_SIZE,
ECS_TASK_EXECUTION_ROLE_NAME,
ECS_TASK_MEMORY_SIZE,
ECS_TASK_ROLE_NAME,
ECS_USE_FARGATE_SPOT,
ENABLE_AGENTCORE_CDK_RUNTIME,
ENABLE_AGENTCORE_RUNTIME,
ENABLE_CLOUDFRONT_WAF,
ENABLE_ECS_SERVICE_CONNECT,
ENABLE_ECS_VPC_INTERFACE_ENDPOINTS,
ENABLE_HEADLESS_DEPLOYMENT,
ENABLE_PI_AGENT_ECS_SERVICE,
ENABLE_PI_AGENT_EXPRESS_SERVICE,
ENABLE_S3_BATCH_ECS_TRIGGER,
EXISTING_IGW_ID,
EXISTING_LOAD_BALANCER_ARN,
EXISTING_LOAD_BALANCER_DNS,
FARGATE_TASK_DEFINITION_NAME,
FEEDBACK_LOG_DYNAMODB_TABLE_NAME,
GITHUB_REPO_BRANCH,
GITHUB_REPO_NAME,
GITHUB_REPO_USERNAME,
GRADIO_SERVER_PORT,
LOAD_BALANCER_WEB_ACL_NAME,
NAT_GATEWAY_NAME,
NEW_VPC_CIDR,
NEW_VPC_DEFAULT_NAME,
POLICY_FILE_ARNS,
POLICY_FILE_LOCATIONS,
PRIVATE_SUBNET_AVAILABILITY_ZONES,
PRIVATE_SUBNET_CIDR_BLOCKS,
PRIVATE_SUBNETS_TO_USE,
PUBLIC_SUBNET_AVAILABILITY_ZONES,
PUBLIC_SUBNET_CIDR_BLOCKS,
PUBLIC_SUBNETS_TO_USE,
S3_BATCH_CONFIG_PREFIX,
S3_BATCH_DEFAULT_PARAMS_KEY,
S3_BATCH_ENV_PREFIX,
S3_BATCH_ENV_SUFFIX,
S3_BATCH_INPUT_PREFIX,
S3_BATCH_LAMBDA_FUNCTION_NAME,
S3_LOG_CONFIG_BUCKET_NAME,
S3_MALWARE_SCAN_BUCKET_NAME,
S3_OUTPUT_BUCKET_NAME,
SAVE_LOGS_TO_DYNAMODB,
SINGLE_NAT_GATEWAY_ID,
SSL_CERTIFICATE_DOMAIN,
TASK_DEFINITION_FILE_LOCATION,
USAGE_LOG_DYNAMODB_TABLE_NAME,
USE_CLOUDFRONT,
USE_CUSTOM_KMS_KEY,
USE_ECS_EXPRESS_MODE,
VPC_NAME,
WEB_ACL_NAME,
)
from cdk_functions import ( # Only keep CDK-native functions
add_alb_https_listener_with_cert,
add_custom_policies,
add_s3_enforce_ssl_policy,
allow_express_load_balancer_to_ecs_security_group,
attach_managed_policy_arns,
attach_pi_agent_to_shared_alb,
build_ecs_execution_role_kms_policy,
build_ecs_task_role_kms_policy,
build_express_agentic_primary_container,
build_express_gateway_primary_container,
build_pi_express_container_environment,
configure_public_github_codebuild_source,
create_ecs_express_infrastructure_role,
create_ecs_vpc_endpoints_for_private_subnets,
create_express_gateway_service,
create_headless_s3_batch_seed,
create_malware_scan_bucket_and_guardduty_plan,
create_nat_gateway,
create_pi_agent_ecs_resources,
create_s3_batch_ecs_trigger_lambda,
create_subnets,
create_web_acl_with_common_rules,
default_secrets_manager_kms_key_arn,
ecr_empty_on_delete,
ecs_availability_zone_rebalancing,
express_ingress_first_load_balancer_security_group,
express_ingress_load_balancer_arn,
format_agentic_public_urls,
format_express_agentic_public_url,
format_main_express_gradio_url,
load_app_config_env_for_express,
managed_resource_removal_policy,
pi_alb_root_path_for_container,
pi_listener_rule_count,
public_github_codebuild_source,
resolve_ecs_s3_gateway_subnet_selection,
resolve_ecs_vpc_endpoint_subnet_selection,
resolve_policy_file_paths,
resolve_service_connect_client_security_group_ids,
resource_deletion_protection_flag,
s3_auto_delete_objects_on_stack_destroy,
wire_public_subnet_internet_access,
)
from constructs import Construct
# Amazon Linux 2023 x86_64 standard image (AL2023 host kernel; Docker privileged builds).
_CODEBUILD_DOCKER_IMAGE = codebuild.LinuxBuildImage.AMAZON_LINUX_2023_5
_CODEBUILD_ARM_IMAGE = codebuild.LinuxArmBuildImage.AMAZON_LINUX_2023_STANDARD_3_0
def _get_env_list(env_var_name: str) -> List[str]:
"""Parses a comma-separated environment variable into a list of strings."""
value = env_var_name[1:-1].strip().replace('"', "").replace("'", "")
if not value:
return []
# Split by comma and filter out any empty strings that might result from extra commas
return [s.strip() for s in value.split(",") if s.strip()]
# 1. Try to load CIDR/AZs from environment variables
if PUBLIC_SUBNETS_TO_USE:
PUBLIC_SUBNETS_TO_USE = _get_env_list(PUBLIC_SUBNETS_TO_USE)
if PRIVATE_SUBNETS_TO_USE:
PRIVATE_SUBNETS_TO_USE = _get_env_list(PRIVATE_SUBNETS_TO_USE)
if PUBLIC_SUBNET_CIDR_BLOCKS:
PUBLIC_SUBNET_CIDR_BLOCKS = _get_env_list("PUBLIC_SUBNET_CIDR_BLOCKS")
if PUBLIC_SUBNET_AVAILABILITY_ZONES:
PUBLIC_SUBNET_AVAILABILITY_ZONES = _get_env_list("PUBLIC_SUBNET_AVAILABILITY_ZONES")
if PRIVATE_SUBNET_CIDR_BLOCKS:
PRIVATE_SUBNET_CIDR_BLOCKS = _get_env_list("PRIVATE_SUBNET_CIDR_BLOCKS")
if PRIVATE_SUBNET_AVAILABILITY_ZONES:
PRIVATE_SUBNET_AVAILABILITY_ZONES = _get_env_list(
"PRIVATE_SUBNET_AVAILABILITY_ZONES"
)
# AWS_MANAGED_TASK_ROLES_LIST and POLICY_* lists are parsed in cdk_config.py.
class CdkStack(Stack):
def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
super().__init__(scope, construct_id, **kwargs)
# --- Helper to get context values ---
def get_context_bool(key: str, default: bool = False) -> bool:
value = self.node.try_get_context(key)
if value is None:
return default
if isinstance(value, bool):
return value
if isinstance(value, str):
return value.lower() in ("true", "1", "yes")
return bool(value)
def get_context_str(key: str, default: str = None) -> str:
return self.node.try_get_context(key) or default
def get_context_dict(key: str, default: dict = None) -> dict:
return self.node.try_get_context(key) or default
def get_context_list_of_dicts(key: str) -> List[Dict[str, Any]]:
ctx_value = self.node.try_get_context(key)
if not isinstance(ctx_value, list):
print(
f"Warning: Context key '{key}' not found or not a list. Returning empty list."
)
return []
# Optional: Add validation that all items in the list are dicts
return ctx_value
resource_removal_policy = managed_resource_removal_policy()
resource_delete_protection = resource_deletion_protection_flag()
s3_auto_delete_objects = s3_auto_delete_objects_on_stack_destroy()
self.template_options.description = "Deployment of the 'doc_redaction' PDF, image, and XLSX/CSV redaction app. Git repo available at: https://github.com/seanpedrick-case/doc_redaction."
use_express_ingress = (
not ACM_SSL_CERTIFICATE_ARN and USE_ECS_EXPRESS_MODE == "True"
)
enable_headless = ENABLE_HEADLESS_DEPLOYMENT == "True"
express_public_subnets_only = (
use_express_ingress and ECS_EXPRESS_USE_PUBLIC_SUBNETS == "True"
) or (
enable_headless
and not use_express_ingress
and ECS_EXPRESS_USE_PUBLIC_SUBNETS == "True"
)
deploy_web_ingress = not use_express_ingress and not enable_headless
enable_service_connect = (
ENABLE_ECS_SERVICE_CONNECT == "True" and not use_express_ingress
)
enable_agentic_legacy = (
ENABLE_PI_AGENT_ECS_SERVICE == "True" and not use_express_ingress
)
enable_agentic_express = (
ENABLE_PI_AGENT_EXPRESS_SERVICE == "True" and use_express_ingress
)
enable_agentic_build = enable_agentic_legacy or enable_agentic_express
enable_agentcore_cdk_deploy = (
AGENTCORE_CDK_DEPLOY == "True" or ENABLE_AGENTCORE_CDK_RUNTIME == "True"
)
cloudfront_magic_link = (
USE_CLOUDFRONT == "True" and CLOUDFRONT_AUTH_MODE == "magic-link"
)
express_cognito_auth = (
ENABLE_HEADLESS_DEPLOYMENT != "True" and not cloudfront_magic_link
)
if enable_headless:
print(
"ENABLE_HEADLESS_DEPLOYMENT=True: S3 batch trigger + one-shot Fargate "
"tasks only (no ALB, CloudFront, or always-on ECS service)."
)
elif use_express_ingress:
print(
"USE_ECS_EXPRESS_MODE=True: using ECS Express Mode for HTTPS ingress "
"(no manual ALB/Fargate service)."
)
if express_public_subnets_only:
print(
"ECS_EXPRESS_USE_PUBLIC_SUBNETS=True: Express tasks and VPC "
"endpoints use public subnets only (no private subnet install)."
)
elif enable_headless:
print(
"ENABLE_HEADLESS_DEPLOYMENT=True: batch Fargate tasks use "
"legacy private subnets (or public if configured)."
)
service_connect_client_sg_ids: List[str] = []
if enable_service_connect:
if (
not ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_IDS_LIST
and not ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_NAMES_TO_LOOKUP
and not enable_agentic_legacy
):
raise ValueError(
"ENABLE_ECS_SERVICE_CONNECT=True requires at least one of "
"ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_IDS, "
"ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_NAMES, or "
"ECS_SERVICE_CONNECT_CLIENT_CDK_PREFIXES (other apps' CDK_PREFIX "
f"values, resolved to {{prefix}}{ECS_SERVICE_CONNECT_CLIENT_SG_NAME_SUFFIX} "
"in this VPC), unless ENABLE_PI_AGENT_ECS_SERVICE=True (agentic mode SG is wired in-stack)."
)
service_connect_client_sg_ids = (
resolve_service_connect_client_security_group_ids(
ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_IDS_LIST,
ECS_SERVICE_CONNECT_CLIENT_SECURITY_GROUP_NAMES_TO_LOOKUP,
get_context_str,
)
)
print(
"ENABLE_ECS_SERVICE_CONNECT=True: advertising Fargate service on "
f"Service Connect as {ECS_SERVICE_CONNECT_DISCOVERY_NAME}; "
f"client SGs: {', '.join(service_connect_client_sg_ids)}"
)
# --- VPC and Subnets (Assuming VPC is always lookup, Subnets are created/returned by create_subnets) ---
new_vpc_created = False
imported_vpc_cidr_block = None
imported_vpc_cidr_blocks: List[str] = []
if VPC_NAME:
vpc_id = get_context_str("vpc_id")
if not vpc_id:
raise ValueError(
f"VPC '{VPC_NAME}' was not resolved during pre-check (missing "
"'vpc_id' in context). Re-run from the cdk/ directory so "
"precheck.context.json is generated."
)
availability_zones = list(
dict.fromkeys(
(PUBLIC_SUBNET_AVAILABILITY_ZONES or [])
+ (PRIVATE_SUBNET_AVAILABILITY_ZONES or [])
)
)
if not availability_zones:
raise ValueError(
"vpc_id is in context but no subnet availability zones are "
"configured. Set PUBLIC_SUBNET_AVAILABILITY_ZONES and/or "
"PRIVATE_SUBNET_AVAILABILITY_ZONES in cdk_config.env."
)
vpc_cidr_block = get_context_str("vpc_cidr_block")
imported_vpc_cidr_block = vpc_cidr_block
imported_vpc_cidr_blocks = list(
self.node.try_get_context("vpc_cidr_blocks") or []
)
if (
imported_vpc_cidr_block
and imported_vpc_cidr_block not in imported_vpc_cidr_blocks
):
imported_vpc_cidr_blocks.insert(0, imported_vpc_cidr_block)
vpc_attrs = {
"vpc_id": vpc_id,
"availability_zones": availability_zones,
}
if vpc_cidr_block:
vpc_attrs["vpc_cidr_block"] = vpc_cidr_block
vpc = ec2.Vpc.from_vpc_attributes(self, "VPC", **vpc_attrs)
cidr_log = (
", ".join(imported_vpc_cidr_blocks)
if imported_vpc_cidr_blocks
else vpc_cidr_block
)
print(
f"Using VPC from pre-check context: {vpc_id}"
+ (f" (CIDR(s) {cidr_log})" if cidr_log else "")
)
elif NEW_VPC_DEFAULT_NAME and not VPC_NAME:
new_vpc_created = True
print(
f"NEW_VPC_DEFAULT_NAME ('{NEW_VPC_DEFAULT_NAME}') is set. Creating a new VPC."
)
# Configuration for the new VPC
# You can make these configurable via context as well, e.g.,
# new_vpc_cidr = self.node.try_get_context("new_vpc_cidr") or "10.0.0.0/24"
# new_vpc_max_azs = self.node.try_get_context("new_vpc_max_azs") or 2 # Use 2 AZs by default for HA
# new_vpc_nat_gateways = self.node.try_get_context("new_vpc_nat_gateways") or new_vpc_max_azs # One NAT GW per AZ for HA
# or 1 for cost savings if acceptable
if not NEW_VPC_CIDR:
raise Exception(
"App has been instructed to create a new VPC but not VPC CDR range provided to variable NEW_VPC_CIDR"
)
print("Provided NEW_VPC_CIDR range:", NEW_VPC_CIDR)
new_vpc_cidr = NEW_VPC_CIDR
new_vpc_max_azs = 2 # Creates resources in 2 AZs. Adjust as needed.
# For "a NAT gateway", you can set nat_gateways=1.
# For resilience (NAT GW per AZ), set nat_gateways=new_vpc_max_azs.
# The Vpc construct will create NAT Gateway(s) if subnet_type PRIVATE_WITH_EGRESS is used
# and nat_gateways > 0.
if express_public_subnets_only:
new_vpc_nat_gateways = 0
new_vpc_subnet_configuration = [
ec2.SubnetConfiguration(
name="Public",
subnet_type=ec2.SubnetType.PUBLIC,
# /27 (~27 usable IPs): Express managed ALB needs 8+ free IPs per
# subnet alongside VPC interface endpoints and task ENIs.
cidr_mask=27,
),
]
else:
new_vpc_nat_gateways = (
1 # Creates a single NAT Gateway for cost-effectiveness.
)
new_vpc_subnet_configuration = [
ec2.SubnetConfiguration(
name="Public", # Name prefix for public subnets
subnet_type=ec2.SubnetType.PUBLIC,
cidr_mask=26,
),
ec2.SubnetConfiguration(
name="Private", # Name prefix for private subnets
subnet_type=ec2.SubnetType.PRIVATE_WITH_EGRESS, # Ensures these subnets have NAT Gateway access
cidr_mask=28,
),
# You could also add ec2.SubnetType.PRIVATE_ISOLATED if needed
]
# If you need one NAT GW per AZ for higher availability, set nat_gateways to new_vpc_max_azs.
vpc = ec2.Vpc(
self,
"MyNewLogicalVpc", # This is the CDK construct ID
vpc_name=NEW_VPC_DEFAULT_NAME,
ip_addresses=ec2.IpAddresses.cidr(new_vpc_cidr),
max_azs=new_vpc_max_azs,
nat_gateways=new_vpc_nat_gateways, # Number of NAT gateways to create
subnet_configuration=new_vpc_subnet_configuration,
# Internet Gateway is created and configured automatically for PUBLIC subnets.
# Route tables for public subnets will point to the IGW.
# Route tables for PRIVATE_WITH_EGRESS subnets will point to the NAT Gateway(s).
)
print(
f"Successfully created new VPC: {vpc.vpc_id} with name '{NEW_VPC_DEFAULT_NAME}'"
)
# If nat_gateways > 0, vpc.nat_gateway_ips will contain EIPs if Vpc created them.
# vpc.public_subnets, vpc.private_subnets, vpc.isolated_subnets are populated.
else:
raise Exception(
"VPC_NAME for current VPC not found, and NEW_VPC_DEFAULT_NAME not found to create a new VPC"
)
# --- Subnet Handling (Check Context and Create/Import) ---
# Initialize lists to hold ISubnet objects (L2) and CfnSubnet/CfnRouteTable (L1)
# We will store ISubnet for consistency, as CfnSubnet has a .subnet_id property
self.public_subnets: List[ec2.ISubnet] = []
self.private_subnets: List[ec2.ISubnet] = []
# Store L1 CfnRouteTables explicitly if you need to reference them later
self.private_route_tables_cfn: List[ec2.CfnRouteTable] = []
self.public_route_tables_cfn: List[ec2.CfnRouteTable] = (
[]
) # New: to store public RTs
names_to_create_private = []
names_to_create_public = []
if not PUBLIC_SUBNETS_TO_USE and not PRIVATE_SUBNETS_TO_USE:
if express_public_subnets_only:
print(
"Express public-subnet mode: auto-selecting public subnets only "
"(private subnets are not installed)."
)
selected_public_subnets = vpc.select_subnets(
subnet_type=ec2.SubnetType.PUBLIC, one_per_az=True
)
if len(selected_public_subnets.subnet_ids) < 2:
raise Exception(
"Express mode needs at least two public subnets in different "
"availability zones."
)
self.public_subnets = selected_public_subnets.subnets
self.private_subnets = []
print(
f"Selected {len(self.public_subnets)} public subnets for Express."
)
else:
print(
"Warning: No public or private subnets specified in *_SUBNETS_TO_USE. Attempting to select from existing VPC subnets."
)
print("vpc.public_subnets:", vpc.public_subnets)
print("vpc.private_subnets:", vpc.private_subnets)
if (
vpc.public_subnets
): # These are already one_per_az if max_azs was used and Vpc created them
self.public_subnets.extend(vpc.public_subnets)
else:
self.node.add_warning("No public subnets found in the VPC.")
# Get private subnets with egress specifically
# selected_private_subnets_with_egress = vpc.select_subnets(subnet_type=ec2.SubnetType.PRIVATE_WITH_EGRESS)
print(
f"Selected from VPC: {len(self.public_subnets)} public, {len(self.private_subnets)} private_with_egress subnets."
)
if (
len(self.public_subnets) < 1 or len(self.private_subnets) < 1
): # Simplified check for new VPC
# If new_vpc_max_azs was 1, you'd have 1 of each. If 2, then 2 of each.
# The original check ' < 2' might be too strict if new_vpc_max_azs=1
pass # For new VPC, allow single AZ setups if configured that way. The VPC construct ensures one per AZ up to max_azs.
if not self.public_subnets and not self.private_subnets:
print(
"Error: No public or private subnets could be found in the VPC for automatic selection. "
"You must either specify subnets in *_SUBNETS_TO_USE or ensure the VPC has discoverable subnets."
)
raise RuntimeError(
"No suitable subnets found for automatic selection."
)
else:
print(
f"Automatically selected {len(self.public_subnets)} public and {len(self.private_subnets)} private subnets based on VPC properties."
)
selected_public_subnets = vpc.select_subnets(
subnet_type=ec2.SubnetType.PUBLIC, one_per_az=True
)
private_subnets_egress = vpc.select_subnets(
subnet_type=ec2.SubnetType.PRIVATE_WITH_EGRESS, one_per_az=True
)
if private_subnets_egress.subnets:
self.private_subnets.extend(private_subnets_egress.subnets)
else:
self.node.add_warning(
"No PRIVATE_WITH_EGRESS subnets found in the VPC."
)
try:
private_subnets_isolated = vpc.select_subnets(
subnet_type=ec2.SubnetType.PRIVATE_ISOLATED, one_per_az=True
)
except Exception as e:
private_subnets_isolated = []
print("Could not find any isolated subnets due to:", e)
###
combined_subnet_objects = []
if private_subnets_isolated:
if private_subnets_egress.subnets:
# Add the first PRIVATE_WITH_EGRESS subnet
combined_subnet_objects.append(
private_subnets_egress.subnets[0]
)
elif not private_subnets_isolated:
if private_subnets_egress.subnets:
# Add the first PRIVATE_WITH_EGRESS subnet
combined_subnet_objects.extend(private_subnets_egress.subnets)
else:
self.node.add_warning(
"No PRIVATE_WITH_EGRESS subnets found to select the first one."
)
# Add all PRIVATE_ISOLATED subnets *except* the first one (if they exist)
try:
if len(private_subnets_isolated.subnets) > 1:
combined_subnet_objects.extend(
private_subnets_isolated.subnets[1:]
)
elif (
private_subnets_isolated.subnets
): # Only 1 isolated subnet, add a warning if [1:] was desired
self.node.add_warning(
"Only one PRIVATE_ISOLATED subnet found, private_subnets_isolated.subnets[1:] will be empty."
)
else:
self.node.add_warning("No PRIVATE_ISOLATED subnets found.")
except Exception as e:
print("Could not identify private isolated subnets due to:", e)
# Create an ec2.SelectedSubnets object from the combined private subnet list.
selected_private_subnets = vpc.select_subnets(
subnets=combined_subnet_objects
)
print("selected_public_subnets:", selected_public_subnets)
print("selected_private_subnets:", selected_private_subnets)
if (
len(selected_public_subnets.subnet_ids) < 2
or len(selected_private_subnets.subnet_ids) < 2
):
raise Exception(
"Need at least two public or private subnets in different availability zones"
)
if not selected_public_subnets and not selected_private_subnets:
# If no subnets could be found even with automatic selection, raise an error.
# This ensures the stack doesn't proceed if it absolutely needs subnets.
print(
"Error: No existing public or private subnets could be found in the VPC for automatic selection. "
"You must either specify subnets in *_SUBNETS_TO_USE or ensure the VPC has discoverable subnets."
)
raise RuntimeError(
"No suitable subnets found for automatic selection."
)
else:
self.public_subnets = selected_public_subnets.subnets
self.private_subnets = selected_private_subnets.subnets
print(
f"Automatically selected {len(self.public_subnets)} public and {len(self.private_subnets)} private subnets based on VPC discovery."
)
print("self.public_subnets:", self.public_subnets)
print("self.private_subnets:", self.private_subnets)
# Since subnets are now assigned, we can exit this processing block.
# The rest of the original code (which iterates *_SUBNETS_TO_USE) will be skipped.
checked_public_subnets_ctx = get_context_dict("checked_public_subnets")
checked_private_subnets_ctx = get_context_dict("checked_private_subnets")
public_subnets_data_for_creation_ctx = get_context_list_of_dicts(
"public_subnets_to_create"
)
private_subnets_data_for_creation_ctx = get_context_list_of_dicts(
"private_subnets_to_create"
)
# --- 3. Process Public Subnets ---
print("\n--- Processing Public Subnets ---")
public_internet_gateway_attachment = None
if not new_vpc_created:
resolved_igw_id = (
get_context_str("internet_gateway_id") or EXISTING_IGW_ID or ""
).strip()
if resolved_igw_id and (
PUBLIC_SUBNETS_TO_USE
or public_subnets_data_for_creation_ctx
or get_context_list_of_dicts("public_subnets_needing_igw_route")
):
public_internet_gateway_attachment = wire_public_subnet_internet_access(
self,
"PublicSubnetInternet",
vpc_id=vpc.vpc_id,
internet_gateway_id=resolved_igw_id,
needs_igw_vpc_attachment=get_context_bool(
"internet_gateway_needs_vpc_attachment", False
),
subnets_needing_route=get_context_list_of_dicts(
"public_subnets_needing_igw_route"
),
)
# Import existing public subnets
if checked_public_subnets_ctx:
for i, subnet_name in enumerate(PUBLIC_SUBNETS_TO_USE):
subnet_info = checked_public_subnets_ctx.get(subnet_name)
if subnet_info and subnet_info.get("exists"):
subnet_id = subnet_info.get("id")
if not subnet_id:
raise RuntimeError(
f"Context for existing public subnet '{subnet_name}' is missing 'id'."
)
subnet_az = subnet_info.get("az")
if (
not subnet_az
and PUBLIC_SUBNET_AVAILABILITY_ZONES
and i < len(PUBLIC_SUBNET_AVAILABILITY_ZONES)
):
subnet_az = PUBLIC_SUBNET_AVAILABILITY_ZONES[i]
if not subnet_az:
raise RuntimeError(
f"Context for existing public subnet '{subnet_name}' is missing 'az'."
)
subnet_attrs = {
"subnet_id": subnet_id,
"availability_zone": subnet_az,
}
route_table_id = subnet_info.get("route_table_id")
if route_table_id:
subnet_attrs["route_table_id"] = route_table_id
try:
imported_subnet = ec2.Subnet.from_subnet_attributes(
self,
f"ImportedPublicSubnet{subnet_name.replace('-', '')}{i}",
**subnet_attrs,
)
self.public_subnets.append(imported_subnet)
print(
f"Imported existing public subnet: {subnet_name} (ID: {subnet_id})"
)
except Exception as e:
raise RuntimeError(
f"Failed to import public subnet '{subnet_name}' with ID '{subnet_id}'. Error: {e}"
)
# Create new public subnets based on public_subnets_data_for_creation_ctx
if public_subnets_data_for_creation_ctx:
names_to_create_public = [
s["name"] for s in public_subnets_data_for_creation_ctx
]
cidrs_to_create_public = [
s["cidr"] for s in public_subnets_data_for_creation_ctx
]
azs_to_create_public = [
s["az"] for s in public_subnets_data_for_creation_ctx
]
if names_to_create_public:
print(
f"Attempting to create {len(names_to_create_public)} new public subnets: {names_to_create_public}"
)
igw_for_new_subnets = (
get_context_str("internet_gateway_id") or EXISTING_IGW_ID
)
newly_created_public_subnets, newly_created_public_rts_cfn = (
create_subnets(
self,
vpc,
CDK_PREFIX,
names_to_create_public,
cidrs_to_create_public,
azs_to_create_public,
is_public=True,
internet_gateway_id=igw_for_new_subnets,
internet_gateway_attachment=public_internet_gateway_attachment,
)
)
self.public_subnets.extend(newly_created_public_subnets)
self.public_route_tables_cfn.extend(newly_created_public_rts_cfn)
if (
not self.public_subnets
and not names_to_create_public
and not PUBLIC_SUBNETS_TO_USE
):
raise Exception("No public subnets found or created, exiting.")
# --- NAT Gateway Creation/Lookup ---
self.single_nat_gateway_id = None
if express_public_subnets_only:
print(
"Express public-subnet mode: skipping NAT Gateway install "
"(not required for public Express tasks)."
)
else:
print("Creating NAT gateway/located existing")
nat_gw_id_from_context = SINGLE_NAT_GATEWAY_ID or get_context_str(
"id:NatGateway"
)
if nat_gw_id_from_context:
print(
f"Using existing NAT Gateway ID from context: {nat_gw_id_from_context}"
)
self.single_nat_gateway_id = nat_gw_id_from_context
elif (
new_vpc_created
and new_vpc_nat_gateways > 0
and hasattr(vpc, "nat_gateways")
and vpc.nat_gateways
):
self.single_nat_gateway_id = vpc.nat_gateways[0].gateway_id
print(
f"Using NAT Gateway {self.single_nat_gateway_id} created by the new VPC construct."
)
if not self.single_nat_gateway_id:
print("Creating a new NAT gateway")
if hasattr(vpc, "nat_gateways") and vpc.nat_gateways:
print("Existing NAT gateway found in vpc")
pass
# If not in context, create a new one, but only if we have a public subnet.
elif self.public_subnets:
print("NAT Gateway ID not found in context. Creating a new one.")
# Place the NAT GW in the first available public subnet
first_public_subnet = self.public_subnets[0]
self.single_nat_gateway_id = create_nat_gateway(
self,
first_public_subnet,
nat_gateway_name=NAT_GATEWAY_NAME,
nat_gateway_id_context_key=SINGLE_NAT_GATEWAY_ID,
)
else:
print(
"WARNING: No public subnets available and NAT gateway not found in existing VPC. Cannot create a NAT Gateway."
)
# --- 4. Process Private Subnets ---
if express_public_subnets_only:
if PRIVATE_SUBNETS_TO_USE or private_subnets_data_for_creation_ctx:
print(
"Note: PRIVATE_* subnet settings are ignored in Express public-subnet mode."
)
else:
print("\n--- Processing Private Subnets ---")
if checked_private_subnets_ctx:
for i, subnet_name in enumerate(PRIVATE_SUBNETS_TO_USE):
subnet_info = checked_private_subnets_ctx.get(subnet_name)
if subnet_info and subnet_info.get("exists"):
subnet_id = subnet_info.get("id")
if not subnet_id:
raise RuntimeError(
f"Context for existing private subnet '{subnet_name}' is missing 'id'."
)
subnet_az = subnet_info.get("az")
if (
not subnet_az
and PRIVATE_SUBNET_AVAILABILITY_ZONES
and i < len(PRIVATE_SUBNET_AVAILABILITY_ZONES)
):
subnet_az = PRIVATE_SUBNET_AVAILABILITY_ZONES[i]
if not subnet_az:
raise RuntimeError(
f"Context for existing private subnet '{subnet_name}' is missing 'az'."
)
subnet_attrs = {
"subnet_id": subnet_id,
"availability_zone": subnet_az,
}
route_table_id = subnet_info.get("route_table_id")
if route_table_id:
subnet_attrs["route_table_id"] = route_table_id
try:
imported_subnet = ec2.Subnet.from_subnet_attributes(
self,
f"ImportedPrivateSubnet{subnet_name.replace('-', '')}{i}",
**subnet_attrs,
)
self.private_subnets.append(imported_subnet)
print(
f"Imported existing private subnet: {subnet_name} (ID: {subnet_id})"
)
except Exception as e:
raise RuntimeError(
f"Failed to import private subnet '{subnet_name}' with ID '{subnet_id}'. Error: {e}"
)
# Create new private subnets
if private_subnets_data_for_creation_ctx:
names_to_create_private = [
s["name"] for s in private_subnets_data_for_creation_ctx
]
cidrs_to_create_private = [
s["cidr"] for s in private_subnets_data_for_creation_ctx
]
azs_to_create_private = [
s["az"] for s in private_subnets_data_for_creation_ctx
]
if names_to_create_private:
print(
f"Attempting to create {len(names_to_create_private)} new private subnets: {names_to_create_private}"
)
# --- CALL THE NEW CREATE_SUBNETS FUNCTION FOR PRIVATE ---
# Ensure self.single_nat_gateway_id is available before this call
if not self.single_nat_gateway_id:
raise ValueError(
"A single NAT Gateway ID is required for private subnets but was not resolved."
)
newly_created_private_subnets_cfn, newly_created_private_rts_cfn = (
create_subnets(
self,
vpc,
CDK_PREFIX,
names_to_create_private,
cidrs_to_create_private,
azs_to_create_private,
is_public=False,
single_nat_gateway_id=self.single_nat_gateway_id, # Pass the single NAT Gateway ID
)
)
self.private_subnets.extend(newly_created_private_subnets_cfn)
self.private_route_tables_cfn.extend(newly_created_private_rts_cfn)
print(
f"Successfully defined {len(newly_created_private_subnets_cfn)} new private subnets and their route tables for creation."
)
else:
print(
"No private subnets specified for creation in context ('private_subnets_to_create')."
)
# if not self.private_subnets:
# raise Exception("No private subnets found or created, exiting.")
if (
not self.private_subnets
and not names_to_create_private
and not PRIVATE_SUBNETS_TO_USE
):
# This condition might need adjustment for new VPCs.
raise Exception("No private subnets found or created, exiting.")
# --- 5. Sanity Check and Output ---
# Output the single NAT Gateway ID for verification
if self.single_nat_gateway_id:
CfnOutput(
self,
"SingleNatGatewayId",
value=self.single_nat_gateway_id,
description="ID of the single NAT Gateway resolved or created.",
)
elif express_public_subnets_only:
print(
"INFO: Express public-subnet mode — NAT Gateway not installed or required."
)
elif (
NEW_VPC_DEFAULT_NAME
and (self.node.try_get_context("new_vpc_nat_gateways") or 1) > 0
):
print(
"INFO: A new VPC was created with NAT Gateway(s). Their routing is handled by the VPC construct. No single_nat_gateway_id was explicitly set for separate output."
)
else:
out_message = "WARNING: No single NAT Gateway was resolved or created explicitly by the script's logic after VPC setup."
print(out_message)
raise Exception(out_message)
# --- Outputs for other stacks/regions ---
# These are crucial for cross-stack, cross-region referencing
self.params = dict()
self.params["vpc_id"] = vpc.vpc_id
self.params["private_subnets"] = self.private_subnets
self.params["private_route_tables"] = self.private_route_tables_cfn
self.params["public_subnets"] = self.public_subnets
self.params["public_route_tables"] = self.public_route_tables_cfn
private_subnet_selection = ec2.SubnetSelection(subnets=self.private_subnets)
public_subnet_selection = ec2.SubnetSelection(subnets=self.public_subnets)
for sub in private_subnet_selection.subnets:
print(
"private subnet:",
sub.subnet_id,
"is in availability zone:",
sub.availability_zone,
)
for sub in public_subnet_selection.subnets:
print(
"public subnet:",
sub.subnet_id,
"is in availability zone:",
sub.availability_zone,
)
print("Private subnet route tables:", self.private_route_tables_cfn)
CfnOutput(
self,
"VpcIdOutput",
value=vpc.vpc_id,
description="The ID of the VPC used by this stack.",
)
# --- IAM Roles ---
cognito_secret_name = COGNITO_USER_POOL_CLIENT_SECRET_NAME
secret_kms_key_arn_from_context = get_context_str(
f"kms_key_arn:{cognito_secret_name}"
)
if USE_CUSTOM_KMS_KEY == "1":
kms_key = kms.Key(
self,
"RedactionSharedKmsKey",
alias=CUSTOM_KMS_KEY_NAME,
removal_policy=resource_removal_policy,
)
shared_kms_key_arn = kms_key.key_arn
secret_kms_key_arn = secret_kms_key_arn_from_context or kms_key.key_arn
else:
kms_key = None
shared_kms_key_arn = None
secret_kms_key_arn = (
secret_kms_key_arn_from_context
or default_secrets_manager_kms_key_arn(AWS_REGION, AWS_ACCOUNT_ID)
)
task_role_kms_policy = json.dumps(
build_ecs_task_role_kms_policy(shared_kms_key_arn=shared_kms_key_arn),
indent=4,
)
if enable_headless:
execution_role_kms_policy = json.dumps(
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "STSCallerIdentity",
"Effect": "Allow",
"Action": ["sts:GetCallerIdentity"],
"Resource": "*",
}
],
},
indent=4,
)
else:
execution_role_kms_policy = json.dumps(
build_ecs_execution_role_kms_policy(
secret_kms_key_arn=secret_kms_key_arn,
),
indent=4,
)
try:
codebuild_role_name = CODEBUILD_ROLE_NAME
if get_context_bool(f"exists:{codebuild_role_name}"):
# If exists, lookup/import the role using ARN from context
role_arn = get_context_str(f"arn:{codebuild_role_name}")
if not role_arn:
raise ValueError(
f"Context value 'arn:{codebuild_role_name}' is required if role exists."
)
codebuild_role = iam.Role.from_role_arn(
self, "CodeBuildRole", role_arn=role_arn
)
print("Using existing CodeBuild role")
else:
# If not exists, create the role
codebuild_role = iam.Role(
self,
"CodeBuildRole", # Logical ID
role_name=codebuild_role_name, # Explicit resource name
assumed_by=iam.ServicePrincipal("codebuild.amazonaws.com"),
)
codebuild_role.add_managed_policy(
iam.ManagedPolicy.from_aws_managed_policy_name(
"EC2InstanceProfileForImageBuilderECRContainerBuilds"
)
)
print("Successfully created new CodeBuild role")
task_role_name = ECS_TASK_ROLE_NAME
if get_context_bool(f"exists:{task_role_name}"):
role_arn = get_context_str(f"arn:{task_role_name}")
if not role_arn:
raise ValueError(
f"Context value 'arn:{task_role_name}' is required if role exists."
)
task_role = iam.Role.from_role_arn(self, "TaskRole", role_arn=role_arn)
print("Using existing ECS task role")
else:
task_role = iam.Role(
self,
"TaskRole", # Logical ID
role_name=task_role_name, # Explicit resource name
assumed_by=iam.ServicePrincipal("ecs-tasks.amazonaws.com"),
)
for role in AWS_MANAGED_TASK_ROLES_LIST:
print(f"Adding {role} to policy")
task_role.add_managed_policy(
iam.ManagedPolicy.from_aws_managed_policy_name(f"{role}")
)
attach_managed_policy_arns(task_role, POLICY_FILE_ARNS)
print("Successfully created new ECS task role")
task_role = add_custom_policies(
self,
task_role,
policy_file_locations=resolve_policy_file_paths(
POLICY_FILE_LOCATIONS, cdk_folder=CDK_FOLDER
),
custom_policy_text=task_role_kms_policy,
)
execution_role_name = ECS_TASK_EXECUTION_ROLE_NAME
if get_context_bool(f"exists:{execution_role_name}"):
role_arn = get_context_str(f"arn:{execution_role_name}")
if not role_arn:
raise ValueError(
f"Context value 'arn:{execution_role_name}' is required if role exists."
)
execution_role = iam.Role.from_role_arn(
self, "ExecutionRole", role_arn=role_arn
)
print("Using existing ECS execution role")
else:
execution_role = iam.Role(
self,
"ExecutionRole", # Logical ID
role_name=execution_role_name, # Explicit resource name
assumed_by=iam.ServicePrincipal("ecs-tasks.amazonaws.com"),
)
for role in ECS_EXECUTION_ROLE_MANAGED_POLICIES:
print(f"Adding {role} to execution role")
execution_role.add_managed_policy(
iam.ManagedPolicy.from_aws_managed_policy_name(f"{role}")
)
attach_managed_policy_arns(
execution_role, ECS_EXECUTION_ROLE_POLICY_ARNS
)
print("Successfully created new ECS execution role")
execution_role = add_custom_policies(
self,
execution_role,
policy_file_locations=resolve_policy_file_paths(
ECS_EXECUTION_ROLE_POLICY_FILES, cdk_folder=CDK_FOLDER
),
custom_policy_text=execution_role_kms_policy,
)
except Exception as e:
raise Exception("Failed at IAM role step due to:", e)
# --- S3 Buckets ---
try:
log_bucket_name = S3_LOG_CONFIG_BUCKET_NAME
if get_context_bool(f"globally_taken:{log_bucket_name}"):
raise ValueError(
f"S3 bucket name {log_bucket_name!r} is taken globally by another "
"AWS account. Set S3_LOG_CONFIG_BUCKET_NAME in cdk/config/cdk_config.env "
"to a unique name (re-run cdk_install.py or check_resources.py)."
)
if get_context_bool(f"exists:{log_bucket_name}"):
bucket = s3.Bucket.from_bucket_name(
self, "LogConfigBucket", bucket_name=log_bucket_name
)
print("Using existing S3 bucket", log_bucket_name)
else:
log_bucket_lifecycle = [
s3.LifecycleRule(
abort_incomplete_multipart_upload_after=Duration.days(7)
)
]
if USE_CUSTOM_KMS_KEY == "1" and isinstance(kms_key, kms.Key):
bucket = s3.Bucket(
self,
"LogConfigBucket",
bucket_name=log_bucket_name,
lifecycle_rules=log_bucket_lifecycle,
versioned=False,
removal_policy=resource_removal_policy,
auto_delete_objects=s3_auto_delete_objects,
encryption=s3.BucketEncryption.KMS,
encryption_key=kms_key,
)
else:
bucket = s3.Bucket(
self,
"LogConfigBucket",
bucket_name=log_bucket_name,
lifecycle_rules=log_bucket_lifecycle,
versioned=False,
removal_policy=resource_removal_policy,
auto_delete_objects=s3_auto_delete_objects,
)
print("Created S3 bucket", log_bucket_name)
# Add policies - this will apply to both created and imported buckets
# CDK handles idempotent policy additions
bucket.add_to_resource_policy(
iam.PolicyStatement(
effect=iam.Effect.ALLOW,
principals=[task_role], # Pass the role object directly
actions=["s3:GetObject", "s3:PutObject"],
resources=[f"{bucket.bucket_arn}/*"],
)
)
bucket.add_to_resource_policy(
iam.PolicyStatement(
effect=iam.Effect.ALLOW,
principals=[task_role],
actions=["s3:ListBucket"],
resources=[bucket.bucket_arn],
)
)
output_bucket_name = S3_OUTPUT_BUCKET_NAME
if get_context_bool(f"globally_taken:{output_bucket_name}"):
raise ValueError(
f"S3 bucket name {output_bucket_name!r} is taken globally by another "
"AWS account. Set S3_OUTPUT_BUCKET_NAME in cdk/config/cdk_config.env "
"to a unique name (re-run cdk_install.py or check_resources.py)."
)
if get_context_bool(f"exists:{output_bucket_name}"):
output_bucket = s3.Bucket.from_bucket_name(
self, "OutputBucket", bucket_name=output_bucket_name
)
print("Using existing Output bucket", output_bucket_name)
else:
if USE_CUSTOM_KMS_KEY == "1" and isinstance(kms_key, kms.Key):
output_bucket = s3.Bucket(
self,
"OutputBucket",
bucket_name=output_bucket_name,
lifecycle_rules=[
s3.LifecycleRule(
expiration=Duration.days(
int(DAYS_TO_DISPLAY_WHOLE_DOCUMENT_JOBS)
)
)
],
versioned=False,
removal_policy=resource_removal_policy,
auto_delete_objects=s3_auto_delete_objects,
encryption=s3.BucketEncryption.KMS,
encryption_key=kms_key,
)
else:
output_bucket = s3.Bucket(
self,
"OutputBucket",
bucket_name=output_bucket_name,
lifecycle_rules=[
s3.LifecycleRule(
expiration=Duration.days(
int(DAYS_TO_DISPLAY_WHOLE_DOCUMENT_JOBS)
)
)
],
versioned=False,
removal_policy=resource_removal_policy,
auto_delete_objects=s3_auto_delete_objects,
)
print("Created Output bucket:", output_bucket_name)
add_s3_enforce_ssl_policy(bucket)
add_s3_enforce_ssl_policy(output_bucket)
# Add policies to output bucket
output_bucket.add_to_resource_policy(
iam.PolicyStatement(
effect=iam.Effect.ALLOW,
principals=[task_role],
actions=["s3:GetObject", "s3:PutObject"],
resources=[f"{output_bucket.bucket_arn}/*"],
)
)
output_bucket.add_to_resource_policy(
iam.PolicyStatement(
effect=iam.Effect.ALLOW,
principals=[task_role],
actions=["s3:ListBucket"],
resources=[output_bucket.bucket_arn],
)
)
# Identity-based grants (agentic redaction + main app share task_role; required when the
# output bucket is imported and bucket policies were not updated).
bucket.grant_read_write(task_role)
output_bucket.grant_read_write(task_role)
create_malware_scan_bucket_and_guardduty_plan(
self,
bucket_name=S3_MALWARE_SCAN_BUCKET_NAME,
task_role=task_role,
execution_role=execution_role,
get_context_bool=get_context_bool,
resource_removal_policy=resource_removal_policy,
s3_auto_delete_objects=s3_auto_delete_objects,
kms_key=kms_key if USE_CUSTOM_KMS_KEY == "1" else None,
use_custom_kms=USE_CUSTOM_KMS_KEY == "1",
)
except Exception as e:
raise Exception("Could not handle S3 buckets due to:", e)
# --- Elastic Container Registry ---
try:
full_ecr_repo_name = ECR_CDK_REPO_NAME
if get_context_bool(f"exists:{full_ecr_repo_name}"):
ecr_repo = ecr.Repository.from_repository_name(
self, "ECRRepo", repository_name=full_ecr_repo_name
)
print("Using existing ECR repository")
else:
ecr_repo = ecr.Repository(
self,
"ECRRepo",
repository_name=full_ecr_repo_name,
removal_policy=resource_removal_policy,
empty_on_delete=ecr_empty_on_delete(),
) # Explicitly set repository_name
print("Created ECR repository", full_ecr_repo_name)
ecr_image_loc = ecr_repo.repository_uri
except Exception as e:
raise Exception("Could not handle ECR repo due to:", e)
agentic_ecr_image_loc = ecr_image_loc
# --- CODEBUILD ---
try:
codebuild_project_name = CODEBUILD_PROJECT_NAME
# CodeBuild projects are ALWAYS managed by this stack — never imported.
# Importing an existing project (from_project_arn) emits no
# CloudFormation resource, so a project that was previously
# stack-managed gets DELETED by CloudFormation on the next deploy.
# Because cdk_install.py deploys twice (initial + CloudFront refresh)
# and each deploy re-runs the precheck, an exists->import switch would
# silently delete the project between the two deploys (this is what
# removed the main app project). Creating under a stable logical ID
# makes both deploys update the same resource in place.
if codebuild_project_name:
main_codebuild_project = codebuild.Project(
self,
"CodeBuildProject", # Logical ID
project_name=codebuild_project_name, # Explicit resource name
role=codebuild_role,
source=public_github_codebuild_source(
owner=GITHUB_REPO_USERNAME,
repo=GITHUB_REPO_NAME,
branch_or_ref=GITHUB_REPO_BRANCH,
),
environment=codebuild.BuildEnvironment(
build_image=_CODEBUILD_DOCKER_IMAGE,
privileged=True,
environment_variables={
"ECR_REPO_NAME": codebuild.BuildEnvironmentVariable(
value=full_ecr_repo_name
),
"AWS_DEFAULT_REGION": codebuild.BuildEnvironmentVariable(
value=AWS_REGION
),
"AWS_ACCOUNT_ID": codebuild.BuildEnvironmentVariable(
value=AWS_ACCOUNT_ID
),
"APP_MODE": codebuild.BuildEnvironmentVariable(
value="gradio"
),
},
),
build_spec=codebuild.BuildSpec.from_object(
{
"version": "0.2",
"phases": {
"pre_build": {
"commands": [
"echo Logging in to Amazon ECR",
"aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com",
]
},
"build": {
"commands": [
"echo Building the Docker image",
"docker build --build-arg APP_MODE=$APP_MODE --target $APP_MODE -t $ECR_REPO_NAME:latest .",
"docker tag $ECR_REPO_NAME:latest $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$ECR_REPO_NAME:latest",
]
},
"post_build": {
"commands": [
"echo Pushing the Docker image",
"docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$ECR_REPO_NAME:latest",
]
},
},
}
),
)
configure_public_github_codebuild_source(
main_codebuild_project,
GITHUB_REPO_USERNAME,
GITHUB_REPO_NAME,
)
print("Successfully created CodeBuild project", codebuild_project_name)
# All CodeBuild projects are stack-managed and share codebuild_role.
ecr_grantee = codebuild_role
ecr_repo.grant_pull_push(ecr_grantee)
if enable_agentic_build:
agentic_codebuild_name = CODEBUILD_PI_PROJECT_NAME
# Always stack-managed (see main CodeBuild note above): never
# import, or a previously created project is deleted on redeploy.
if agentic_codebuild_name:
agentic_codebuild_project = codebuild.Project(
self,
"CodeBuildAgenticProject",
project_name=agentic_codebuild_name,
role=codebuild_role,
source=public_github_codebuild_source(
owner=GITHUB_REPO_USERNAME,
repo=GITHUB_REPO_NAME,
branch_or_ref=GITHUB_REPO_BRANCH,
),
environment=codebuild.BuildEnvironment(
build_image=_CODEBUILD_DOCKER_IMAGE,
privileged=True,
environment_variables={
"ECR_REPO_NAME": codebuild.BuildEnvironmentVariable(
value=ECR_AGENT_REPO_NAME
),
"AWS_DEFAULT_REGION": codebuild.BuildEnvironmentVariable(
value=AWS_REGION
),
"AWS_ACCOUNT_ID": codebuild.BuildEnvironmentVariable(
value=AWS_ACCOUNT_ID
),
},
),
build_spec=codebuild.BuildSpec.from_object(
{
"version": "0.2",
"phases": {
"pre_build": {
"commands": [
"echo Logging in to Amazon ECR",
"aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com",
"test -f config/agent.env.example",
"test -f agent-redact/pi-agent/Dockerfile",
]
},
"build": {
"commands": [
"docker build -f agent-redact/pi-agent/Dockerfile -t $ECR_REPO_NAME:latest .",
"docker tag $ECR_REPO_NAME:latest $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$ECR_REPO_NAME:latest",
]
},
"post_build": {
"commands": [
"docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$ECR_REPO_NAME:latest",
]
},
},
}
),
)
configure_public_github_codebuild_source(
agentic_codebuild_project,
GITHUB_REPO_USERNAME,
GITHUB_REPO_NAME,
)
print(
"Created agentic redaction CodeBuild project",
agentic_codebuild_name,
)
agentic_ecr_repo_name = ECR_AGENT_REPO_NAME
if get_context_bool(f"exists:{agentic_ecr_repo_name}"):
agentic_ecr_repo = ecr.Repository.from_repository_name(
self, "ECRAgenticRepo", repository_name=agentic_ecr_repo_name
)
else:
agentic_ecr_repo = ecr.Repository(
self,
"ECRAgenticRepo",
repository_name=agentic_ecr_repo_name,
removal_policy=resource_removal_policy,
empty_on_delete=ecr_empty_on_delete(),
)
agentic_ecr_image_loc = agentic_ecr_repo.repository_uri
agentic_ecr_repo.grant_pull_push(ecr_grantee)
CfnOutput(
self, "ECRAgenticRepoUri", value=agentic_ecr_repo.repository_uri
)
if enable_agentcore_cdk_deploy:
agentcore_ecr_repo_name = ECR_AGENTCORE_REPO_NAME
if get_context_bool(f"exists:{agentcore_ecr_repo_name}"):
agentcore_ecr_repo = ecr.Repository.from_repository_name(
self,
"ECRAgentCoreRuntimeRepo",
repository_name=agentcore_ecr_repo_name,
)
else:
agentcore_ecr_repo = ecr.Repository(
self,
"ECRAgentCoreRuntimeRepo",
repository_name=agentcore_ecr_repo_name,
removal_policy=resource_removal_policy,
empty_on_delete=ecr_empty_on_delete(),
)
agentcore_ecr_repo.grant_pull_push(ecr_grantee)
CfnOutput(
self,
"ECRAgentCoreRuntimeRepoUri",
value=agentcore_ecr_repo.repository_uri,
)
agentcore_codebuild_name = CODEBUILD_AGENTCORE_PROJECT_NAME
# Always stack-managed (see main CodeBuild note above): never
# import, or a previously created project is deleted on redeploy.
if agentcore_codebuild_name:
agentcore_codebuild_project = codebuild.Project(
self,
"CodeBuildAgentCoreProject",
project_name=agentcore_codebuild_name,
role=codebuild_role,
source=public_github_codebuild_source(
owner=GITHUB_REPO_USERNAME,
repo=GITHUB_REPO_NAME,
branch_or_ref=GITHUB_REPO_BRANCH,
),
environment=codebuild.BuildEnvironment(
build_image=_CODEBUILD_ARM_IMAGE,
privileged=True,
environment_variables={
"ECR_REPO_NAME": codebuild.BuildEnvironmentVariable(
value=agentcore_ecr_repo_name
),
"AWS_DEFAULT_REGION": codebuild.BuildEnvironmentVariable(
value=AWS_REGION
),
"AWS_ACCOUNT_ID": codebuild.BuildEnvironmentVariable(
value=AWS_ACCOUNT_ID
),
},
),
build_spec=codebuild.BuildSpec.from_object(
{
"version": "0.2",
"phases": {
"pre_build": {
"commands": [
"echo Logging in to Amazon ECR",
"aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com",
"test -f agent-redact/agentcore/Dockerfile.runtime",
]
},
"build": {
"commands": [
"docker build -f agent-redact/agentcore/Dockerfile.runtime -t $ECR_REPO_NAME:latest .",
"docker tag $ECR_REPO_NAME:latest $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$ECR_REPO_NAME:latest",
]
},
"post_build": {
"commands": [
"docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$ECR_REPO_NAME:latest",
]
},
},
}
),
)
configure_public_github_codebuild_source(
agentcore_codebuild_project,
GITHUB_REPO_USERNAME,
GITHUB_REPO_NAME,
)
print(
"Created AgentCore runtime CodeBuild project",
agentcore_codebuild_name,
)
external_agentcore_role_arn = (AGENTCORE_RUNTIME_ROLE_ARN or "").strip()
if external_agentcore_role_arn:
agentcore_exec_role = iam.Role.from_role_arn(
self,
"AgentCoreRuntimeExecutionRole",
role_arn=external_agentcore_role_arn,
mutable=True,
)
else:
agentcore_exec_role = iam.Role(
self,
"AgentCoreRuntimeExecutionRole",
role_name=f"{CDK_PREFIX}AgentCoreRuntimeRole"[:64],
assumed_by=iam.ServicePrincipal(
"bedrock-agentcore.amazonaws.com"
),
)
agentcore_exec_role = add_custom_policies(
self,
agentcore_exec_role,
policy_file_locations=list(AGENTCORE_TASK_ROLE_POLICY_FILES),
)
agentcore_ecr_repo.grant_pull(agentcore_exec_role)
if ENABLE_AGENTCORE_CDK_RUNTIME == "True":
runtime_name = (AGENTCORE_RUNTIME_NAME or "RedactionAgent").strip()[
:48
]
agentcore_runtime = bedrockagentcore.CfnRuntime(
self,
"RedactionAgentCoreRuntime",
agent_runtime_name=runtime_name,
agent_runtime_artifact=bedrockagentcore.CfnRuntime.AgentRuntimeArtifactProperty(
container_configuration=bedrockagentcore.CfnRuntime.ContainerConfigurationProperty(
container_uri=f"{agentcore_ecr_repo.repository_uri}:latest",
),
),
role_arn=agentcore_exec_role.role_arn,
network_configuration=bedrockagentcore.CfnRuntime.NetworkConfigurationProperty(
network_mode=(AGENTCORE_NETWORK_MODE or "PUBLIC").upper(),
),
environment_variables={
"AGENT_DEFAULT_PROVIDER": "amazon-bedrock",
"AGENT_DEFAULT_MODEL": (
AGENTCORE_BEDROCK_MODEL or "anthropic.claude-sonnet-4-6"
),
"AWS_REGION": AWS_REGION,
"AWS_DEFAULT_REGION": AWS_REGION,
"AGENT_WORKSPACE_DIR": "/tmp/agentcore-workspace",
},
)
CfnOutput(
self,
"AgentCoreRuntimeArn",
value=agentcore_runtime.attr_agent_runtime_arn,
)
print(
"Created Bedrock AgentCore Runtime",
runtime_name,
"from ECR image",
f"{agentcore_ecr_repo.repository_uri}:latest",
)
except Exception as e:
raise Exception("Could not handle Codebuild project due to:", e)
agentic_ecs_service = None
agentic_ecs_security_group = None
# --- Security Groups ---
try:
ecs_security_group_name = ECS_SECURITY_GROUP_NAME
try:
ecs_security_group = ec2.SecurityGroup(
self,
"ECSSecurityGroup", # Logical ID
security_group_name=ecs_security_group_name, # Explicit resource name
vpc=vpc,
)
print(f"Created Security Group: {ecs_security_group_name}")
except Exception as e: # If lookup fails, create
print("Failed to create ECS security group due to:", e)
ec2_port_gradio_server_port = ec2.Port.tcp(int(GRADIO_SERVER_PORT))
if deploy_web_ingress:
alb_security_group_name = ALB_NAME_SECURITY_GROUP_NAME
try:
alb_security_group = ec2.SecurityGroup(
self,
"ALBSecurityGroup", # Logical ID
security_group_name=alb_security_group_name,
vpc=vpc,
)
print(f"Created Security Group: {alb_security_group_name}")
except Exception as e:
print("Failed to create ALB security group due to:", e)
ecs_security_group.add_ingress_rule(
peer=alb_security_group,
connection=ec2_port_gradio_server_port,
description="ALB traffic",
)
alb_security_group.add_ingress_rule(
peer=ec2.Peer.prefix_list(CLOUDFRONT_PREFIX_LIST_ID),
connection=ec2.Port.all_traffic(),
description="CloudFront traffic",
)
else:
alb_security_group = None
if USE_CLOUDFRONT == "True":
ecs_security_group.add_ingress_rule(
peer=ec2.Peer.prefix_list(CLOUDFRONT_PREFIX_LIST_ID),
connection=ec2_port_gradio_server_port,
description="CloudFront to ECS (Express Mode)",
)
if enable_service_connect:
for index, client_sg_id in enumerate(service_connect_client_sg_ids):
client_sg = ec2.SecurityGroup.from_security_group_id(
self,
f"ServiceConnectClientSg{index}",
security_group_id=client_sg_id,
)
ecs_security_group.add_ingress_rule(
peer=client_sg,
connection=ec2_port_gradio_server_port,
description=(
f"Service Connect client {client_sg_id} to app port"
),
)
print(
"Service Connect ingress allowed from security groups: "
+ ", ".join(service_connect_client_sg_ids)
)
except Exception as e:
raise Exception("Could not handle security groups due to:", e)
endpoint_subnet_selection = resolve_ecs_vpc_endpoint_subnet_selection(
use_express_ingress=use_express_ingress,
express_use_public_subnets=ECS_EXPRESS_USE_PUBLIC_SUBNETS == "True",
public_subnets=self.public_subnets,
private_subnets=self.private_subnets,
)
s3_gateway_subnet_selection = resolve_ecs_s3_gateway_subnet_selection(
public_subnets=self.public_subnets,
private_subnets=self.private_subnets,
)
if ENABLE_ECS_VPC_INTERFACE_ENDPOINTS == "True" and (
endpoint_subnet_selection or s3_gateway_subnet_selection
):
if (
VPC_NAME
and not imported_vpc_cidr_block
and not imported_vpc_cidr_blocks
):
raise ValueError(
"vpc_cidr_block / vpc_cidr_blocks missing from precheck.context.json. "
"Re-run check_resources.py from the cdk/ directory so the VPC "
"CIDR(s) are stored for VPC endpoints and security groups."
)
existing_endpoint_services = frozenset(
self.node.try_get_context("existing_vpc_endpoint_service_names") or []
)
if VPC_NAME and not existing_endpoint_services:
print(
"Note: existing_vpc_endpoint_service_names not in precheck context; "
"re-run check_resources.py to skip duplicate endpoints in shared VPCs."
)
try:
endpoint_tier = (
"public"
if use_express_ingress and ECS_EXPRESS_USE_PUBLIC_SUBNETS == "True"
else "private"
)
create_ecs_vpc_endpoints_for_private_subnets(
self,
vpc=vpc,
subnets=endpoint_subnet_selection,
s3_gateway_subnets=s3_gateway_subnet_selection,
logical_id_prefix="RedactionEcs",
include_secrets_and_kms=True,
vpc_cidr_block=imported_vpc_cidr_block,
vpc_cidr_blocks=imported_vpc_cidr_blocks or None,
skip_service_names=existing_endpoint_services,
aws_region=AWS_REGION,
)
s3_subnet_count = len(
(s3_gateway_subnet_selection.subnets or [])
if s3_gateway_subnet_selection
else []
)
print(
"Defined ECS VPC interface endpoints (ECR, Logs, Secrets Manager, "
f"KMS) for {endpoint_tier} subnets where not already present; "
f"S3 gateway for {s3_subnet_count} stack subnet(s) (public + "
"private) where not already present."
)
except Exception as e:
raise Exception(
"Could not create ECS VPC interface endpoints for ECS task subnets. "
"If this VPC already has them, re-run check_resources.py (auto-skip) "
"or set ENABLE_ECS_VPC_INTERFACE_ENDPOINTS=False in cdk_config.env "
"and ensure task subnets reach ECR (NAT, IGW, or existing endpoints).",
e,
) from e
# --- DynamoDB tables for logs (optional) ---
if SAVE_LOGS_TO_DYNAMODB == "True":
try:
print("Creating DynamoDB tables for logs")
dynamodb.Table(
self,
"RedactionAccessDataTable",
table_name=ACCESS_LOG_DYNAMODB_TABLE_NAME,
partition_key=dynamodb.Attribute(
name="id", type=dynamodb.AttributeType.STRING
),
billing_mode=dynamodb.BillingMode.PAY_PER_REQUEST,
deletion_protection=resource_delete_protection,
removal_policy=resource_removal_policy,
)
dynamodb.Table(
self,
"RedactionFeedbackDataTable",
table_name=FEEDBACK_LOG_DYNAMODB_TABLE_NAME,
partition_key=dynamodb.Attribute(
name="id", type=dynamodb.AttributeType.STRING
),
billing_mode=dynamodb.BillingMode.PAY_PER_REQUEST,
deletion_protection=resource_delete_protection,
removal_policy=resource_removal_policy,
)
dynamodb.Table(
self,
"RedactionUsageDataTable",
table_name=USAGE_LOG_DYNAMODB_TABLE_NAME,
partition_key=dynamodb.Attribute(
name="id", type=dynamodb.AttributeType.STRING
),
billing_mode=dynamodb.BillingMode.PAY_PER_REQUEST,
deletion_protection=resource_delete_protection,
removal_policy=resource_removal_policy,
)
except Exception as e:
raise Exception("Could not create DynamoDB tables due to:", e)
alb = None
load_balancer_name = ALB_NAME
if len(load_balancer_name) > 32:
load_balancer_name = load_balancer_name[-32:]
if deploy_web_ingress:
# --- ALB (legacy path) ---
try:
alb_arn = get_context_str(f"arn:{load_balancer_name}") or (
EXISTING_LOAD_BALANCER_ARN or None
)
alb_dns_name = get_context_str(f"dns:{load_balancer_name}") or (
EXISTING_LOAD_BALANCER_DNS or None
)
if alb_arn and alb_dns_name:
alb_security_group_id = (
get_context_str(f"security_group_id:{load_balancer_name}")
or alb_security_group.security_group_id
)
alb_attrs = {
"load_balancer_arn": alb_arn,
"load_balancer_dns_name": alb_dns_name,
"security_group_id": alb_security_group_id,
"vpc": vpc,
}
alb_canonical_zone_id = get_context_str(
f"canonical_hosted_zone_id:{load_balancer_name}"
)
if alb_canonical_zone_id:
alb_attrs["load_balancer_canonical_hosted_zone_id"] = (
alb_canonical_zone_id
)
alb = elbv2.ApplicationLoadBalancer.from_application_load_balancer_attributes(
self,
"ALB",
**alb_attrs,
)
print(
f"Using existing Application Load Balancer {load_balancer_name}."
)
else:
alb = elbv2.ApplicationLoadBalancer(
self,
"ALB",
load_balancer_name=load_balancer_name,
vpc=vpc,
internet_facing=True,
security_group=alb_security_group,
vpc_subnets=public_subnet_selection,
drop_invalid_header_fields=True,
deletion_protection=resource_delete_protection,
# GuardDuty upload scans can poll for several minutes; default ALB idle
# timeout (60s) drops the client connection before the scan finishes.
idle_timeout=Duration.seconds(400),
)
print("Successfully created new Application Load Balancer")
except Exception as e:
raise Exception("Could not handle application load balancer due to:", e)
# --- Cognito User Pool (web login; skipped for headless batch-only) ---
user_pool = None
user_pool_client = None
user_pool_domain = None
secret = None
if enable_headless:
print(
"ENABLE_HEADLESS_DEPLOYMENT=True: skipping Cognito user pool, "
"hosted UI domain, and client secret (no web login for batch tasks)."
)
else:
try:
if get_context_bool(f"exists:{COGNITO_USER_POOL_NAME}"):
# Lookup by ID from context
user_pool_id = get_context_str(f"id:{COGNITO_USER_POOL_NAME}")
if not user_pool_id:
raise ValueError(
f"Context value 'id:{COGNITO_USER_POOL_NAME}' is required if User Pool exists."
)
user_pool = cognito.UserPool.from_user_pool_id(
self, "UserPool", user_pool_id=user_pool_id
)
print(f"Using existing user pool {user_pool_id}.")
else:
user_pool = cognito.UserPool(
self,
"UserPool",
user_pool_name=COGNITO_USER_POOL_NAME,
mfa=cognito.Mfa.OFF, # Adjust as needed
sign_in_aliases=cognito.SignInAliases(email=True),
deletion_protection=resource_delete_protection,
removal_policy=resource_removal_policy,
) # Adjust as needed
print(f"Created new user pool {user_pool.user_pool_id}.")
# HTTPS ALB (ACM cert or Express Mode) needs oauth2/idpresponse callback URLs.
if ACM_SSL_CERTIFICATE_ARN or use_express_ingress:
redirect_uris = [
COGNITO_REDIRECTION_URL,
COGNITO_REDIRECTION_URL + "/oauth2/idpresponse",
]
else:
redirect_uris = [COGNITO_REDIRECTION_URL]
user_pool_client_name = COGNITO_USER_POOL_CLIENT_NAME
if get_context_bool(f"exists:{user_pool_client_name}"):
# Lookup by ID from context (requires User Pool object)
user_pool_client_id = get_context_str(f"id:{user_pool_client_name}")
if not user_pool_client_id:
raise ValueError(
f"Context value 'id:{user_pool_client_name}' is required if User Pool Client exists."
)
user_pool_client = cognito.UserPoolClient.from_user_pool_client_id(
self, "UserPoolClient", user_pool_client_id=user_pool_client_id
)
print(f"Using existing user pool client {user_pool_client_id}.")
else:
user_pool_client = cognito.UserPoolClient(
self,
"UserPoolClient",
auth_flows=cognito.AuthFlow(
user_srp=True, user_password=True
), # Example: enable SRP for secure sign-in
user_pool=user_pool,
generate_secret=True,
user_pool_client_name=user_pool_client_name,
supported_identity_providers=[
cognito.UserPoolClientIdentityProvider.COGNITO
],
o_auth=cognito.OAuthSettings(
flows=cognito.OAuthFlows(authorization_code_grant=True),
scopes=[
cognito.OAuthScope.OPENID,
cognito.OAuthScope.EMAIL,
cognito.OAuthScope.PROFILE,
],
callback_urls=redirect_uris,
),
refresh_token_validity=Duration.minutes(
COGNITO_REFRESH_TOKEN_VALIDITY
),
id_token_validity=Duration.minutes(COGNITO_ID_TOKEN_VALIDITY),
access_token_validity=Duration.minutes(
COGNITO_ACCESS_TOKEN_VALIDITY
),
)
CfnOutput(
self,
"CognitoAppClientId",
value=user_pool_client.user_pool_client_id,
)
print(
f"Created new user pool client {user_pool_client.user_pool_client_id}."
)
# Add a domain to the User Pool (crucial for ALB integration)
domain_prefix = (COGNITO_USER_POOL_DOMAIN_PREFIX or "").strip().lower()
domain_exists_on_pool = get_context_bool(
f"cognito_domain_exists_on_pool:{domain_prefix}"
)
if (
get_context_bool(f"cognito_domain_taken:{domain_prefix}")
and not domain_exists_on_pool
):
raise ValueError(
f"Cognito hosted UI domain prefix {domain_prefix!r} is not "
f"available in this region (taken by another AWS account or "
"an existing pool). Set COGNITO_USER_POOL_DOMAIN_PREFIX in "
"cdk/config/cdk_config.env to a unique value and re-run "
"cdk_install.py / check_resources.py."
)
if domain_exists_on_pool:
# The hosted UI domain is already attached to the reused user
# pool. Re-creating it with add_domain would fail at deploy
# time (AlreadyExists), so import the existing domain instead.
user_pool_domain = cognito.UserPoolDomain.from_domain_name(
self, "UserPoolDomain", user_pool_domain_name=domain_prefix
)
login_url = (
f"https://{domain_prefix}.auth.{self.region}.amazoncognito.com"
)
print(
f"Using existing Cognito hosted UI domain {domain_prefix!r} "
"on the reused user pool (imported, not re-created)."
)
else:
user_pool_domain = user_pool.add_domain(
"UserPoolDomain",
cognito_domain=cognito.CognitoDomainOptions(
domain_prefix=COGNITO_USER_POOL_DOMAIN_PREFIX
),
)
# Apply removal_policy to the created UserPoolDomain construct
user_pool_domain.apply_removal_policy(
policy=resource_removal_policy
)
login_url = user_pool_domain.base_url()
CfnOutput(self, "CognitoUserPoolLoginUrl", value=login_url)
except Exception as e:
raise Exception("Could not handle Cognito resources due to:", e)
# --- Secrets Manager Secret ---
try:
secret_name = COGNITO_USER_POOL_CLIENT_SECRET_NAME
if get_context_bool(f"exists:{secret_name}"):
secret_arn = get_context_str(f"arn:{secret_name}")
if secret_arn:
secret = secretsmanager.Secret.from_secret_complete_arn(
self,
"CognitoSecret",
secret_complete_arn=secret_arn,
)
print("Using existing Secret (ARN from precheck context).")
else:
secret = secretsmanager.Secret.from_secret_name_v2(
self, "CognitoSecret", secret_name=secret_name
)
print(
"Using existing Secret by name (IAM grants use ARN wildcard "
"suffix; re-run precheck to pin the full ARN)."
)
else:
if USE_CUSTOM_KMS_KEY == "1" and isinstance(kms_key, kms.Key):
secret = secretsmanager.Secret(
self,
"CognitoSecret", # Logical ID
secret_name=secret_name, # Explicit resource name
secret_object_value={
"REDACTION_USER_POOL_ID": SecretValue.unsafe_plain_text(
user_pool.user_pool_id
), # Use the CDK attribute
"REDACTION_CLIENT_ID": SecretValue.unsafe_plain_text(
user_pool_client.user_pool_client_id
), # Use the CDK attribute
"REDACTION_CLIENT_SECRET": user_pool_client.user_pool_client_secret, # Use the CDK attribute
},
encryption_key=kms_key,
removal_policy=resource_removal_policy,
)
else:
secret = secretsmanager.Secret(
self,
"CognitoSecret", # Logical ID
secret_name=secret_name, # Explicit resource name
secret_object_value={
"REDACTION_USER_POOL_ID": SecretValue.unsafe_plain_text(
user_pool.user_pool_id
), # Use the CDK attribute
"REDACTION_CLIENT_ID": SecretValue.unsafe_plain_text(
user_pool_client.user_pool_client_id
), # Use the CDK attribute
"REDACTION_CLIENT_SECRET": user_pool_client.user_pool_client_secret, # Use the CDK attribute
},
removal_policy=resource_removal_policy,
)
print(
"Created new secret in Secrets Manager for Cognito user pool and related details."
)
except Exception as e:
raise Exception("Could not handle Secrets Manager secret due to:", e)
try:
secret.grant_read(task_role)
secret.grant_read(execution_role)
except Exception as e:
raise Exception("Could not grant access to Secrets Manager due to:", e)
try:
# ECS environmentFiles (app_config.env) are fetched by the execution role at task start.
bucket.grant_read(execution_role, APP_CONFIG_ENV_BASENAME)
# KMS: task role uses shared S3 CMK via build_ecs_task_role_kms_policy;
# execution role uses the secret's CMK via build_ecs_execution_role_kms_policy.
except Exception as e:
raise Exception("Could not grant bucket read to execution role due to:", e)
# --- ECS Cluster (shared by legacy Fargate and Express paths) ---
try:
cluster_kwargs = {
"cluster_name": CLUSTER_NAME,
"enable_fargate_capacity_providers": True,
"vpc": vpc,
}
if enable_service_connect or enable_agentic_express:
cluster_kwargs["default_cloud_map_namespace"] = (
ecs.CloudMapNamespaceOptions(
name=ECS_SERVICE_CONNECT_NAMESPACE,
vpc=vpc,
)
)
cluster = ecs.Cluster(self, "ECSCluster", **cluster_kwargs)
print("Successfully created new ECS cluster")
except Exception as e:
raise Exception("Could not handle ECS cluster due to:", e)
express_service = None
express_alb_security_group_id = None
if use_express_ingress:
try:
express_log_group = logs.LogGroup(
self,
"ExpressTaskLogGroup",
log_group_name=f"/ecs/{ECS_EXPRESS_SERVICE_NAME}-logs".lower(),
retention=logs.RetentionDays.ONE_MONTH,
removal_policy=resource_removal_policy,
)
express_log_group.grant_write(execution_role)
express_infra_role = create_ecs_express_infrastructure_role(
self,
"ExpressInfrastructureRole",
ECS_EXPRESS_INFRASTRUCTURE_ROLE_NAME,
)
express_app_overrides: Dict[str, str] = {}
if ENABLE_HEADLESS_DEPLOYMENT == "True":
express_app_overrides["COGNITO_AUTH"] = "False"
elif enable_agentic_express or cloudfront_magic_link:
# Agentic Gradio app calls main over Service Connect; Gradio auth blocks
# gradio_client unless credentials are passed on every call.
# Magic-link edge auth replaces in-app Cognito on demo.
express_app_overrides["COGNITO_AUTH"] = "False"
express_app_environment = load_app_config_env_for_express(
APP_CONFIG_ENV_FILE,
overrides=express_app_overrides or None,
)
primary_container = build_express_gateway_primary_container(
image_uri=ecr_image_loc + ":latest",
container_port=int(GRADIO_SERVER_PORT),
log_group_name=express_log_group.log_group_name,
aws_region=AWS_REGION,
secret=secret,
environment=express_app_environment,
)
express_use_public_subnets = ECS_EXPRESS_USE_PUBLIC_SUBNETS == "True"
express_subnet_ids = [
s.subnet_id
for s in (
self.public_subnets
if express_use_public_subnets
else self.private_subnets
)
]
if not express_subnet_ids:
tier = "public" if express_use_public_subnets else "private"
raise ValueError(
f"No {tier} subnets available for ECS Express Mode. "
f"Set ECS_EXPRESS_USE_PUBLIC_SUBNETS=False to use private "
"subnets (internal ALB only), or create/import public subnets."
)
if express_use_public_subnets:
print(
"ECS Express Mode using public subnets "
"(internet-facing managed ALB)."
)
else:
print(
"ECS Express Mode using private subnets "
"(internal managed ALB)."
)
express_service = create_express_gateway_service(
self,
"ExpressGatewayService",
service_name=ECS_EXPRESS_SERVICE_NAME,
cluster_name=CLUSTER_NAME,
execution_role_arn=execution_role.role_arn,
infrastructure_role_arn=express_infra_role.role_arn,
task_role_arn=task_role.role_arn,
cpu=str(ECS_TASK_CPU_SIZE),
memory=str(ECS_TASK_MEMORY_SIZE),
health_check_path=ECS_EXPRESS_HEALTH_CHECK_PATH,
primary_container=primary_container,
subnet_ids=express_subnet_ids,
security_group_ids=[ecs_security_group.security_group_id],
)
express_service.node.add_dependency(cluster)
allow_express_load_balancer_to_ecs_security_group(
self,
"ExpressAlbToEcsIngress",
express_service=express_service,
ecs_security_group=ecs_security_group,
container_port=int(GRADIO_SERVER_PORT),
)
express_alb_arn = express_ingress_load_balancer_arn(express_service)
express_alb_dns = express_service.attr_endpoint
express_alb_security_group_id = (
express_ingress_first_load_balancer_security_group(express_service)
)
alb = elbv2.ApplicationLoadBalancer.from_application_load_balancer_attributes(
self,
"ALB",
load_balancer_arn=express_alb_arn,
load_balancer_dns_name=express_alb_dns,
security_group_id=express_alb_security_group_id,
vpc=vpc,
)
# Express Mode manages host-header listener rules (priorities 1, 2, …).
# Do not add ALB authenticate-cognito rules here; use in-app COGNITO_AUTH.
CfnOutput(
self,
"ExpressServiceEndpoint",
value=express_service.attr_endpoint,
description="HTTPS URL for the ECS Express Mode service",
)
CfnOutput(
self,
"ExpressServiceArn",
value=express_service.attr_service_arn,
)
CfnOutput(
self,
"ExpressManagedCertificateArn",
value=express_service.attr_ecs_managed_resource_arns_ingress_path_certificate_arn,
)
express_agentic_service = None
if enable_agentic_express:
try:
agentic_express_log_group = logs.LogGroup(
self,
"ExpressAgenticTaskLogGroup",
log_group_name=f"/ecs/{ECS_PI_EXPRESS_SERVICE_NAME}-logs".lower(),
retention=logs.RetentionDays.ONE_MONTH,
removal_policy=resource_removal_policy,
)
agentic_express_log_group.grant_write(execution_role)
agentic_express_security_group = ec2.SecurityGroup(
self,
"ExpressAgenticSecurityGroup",
vpc=vpc,
security_group_name=ECS_PI_EXPRESS_SECURITY_GROUP_NAME,
description="Agentic redaction ECS Express tasks",
)
agentcore_backend = ENABLE_AGENTCORE_RUNTIME == "True"
agentic_express_environment = build_pi_express_container_environment(
service_connect_discovery_name=ECS_SERVICE_CONNECT_DISCOVERY_NAME,
main_app_port=int(GRADIO_SERVER_PORT),
pi_gradio_port=int(AGENT_GRADIO_PORT),
cognito_auth=express_cognito_auth,
doc_redaction_gradio_url=(
format_main_express_gradio_url(express_alb_dns)
if agentcore_backend
else None
),
# With CloudFront (demo route) the '/agent' prefix is
# forwarded to this origin without being stripped, so Pi
# must serve under that root path. Without CloudFront the
# agentic service is reached at the root of its own
# Express endpoint, so no root path is applied.
pi_root_path=(
AGENT_ALB_PATH_PREFIX_NORMALIZED
if USE_CLOUDFRONT == "True"
else ""
),
)
agentic_primary_container = (
build_express_agentic_primary_container(
image_uri=agentic_ecr_image_loc + ":latest",
container_port=int(AGENT_GRADIO_PORT),
log_group_name=agentic_express_log_group.log_group_name,
aws_region=AWS_REGION,
environment=agentic_express_environment,
secret=secret,
cognito_auth=express_cognito_auth,
)
)
express_agentic_service = create_express_gateway_service(
self,
"ExpressAgenticGatewayService",
service_name=ECS_PI_EXPRESS_SERVICE_NAME,
cluster_name=CLUSTER_NAME,
execution_role_arn=execution_role.role_arn,
infrastructure_role_arn=express_infra_role.role_arn,
task_role_arn=task_role.role_arn,
cpu=str(ECS_PI_TASK_CPU_SIZE),
memory=str(ECS_PI_TASK_MEMORY_SIZE),
health_check_path=ECS_PI_EXPRESS_HEALTH_CHECK_PATH,
primary_container=agentic_primary_container,
subnet_ids=express_subnet_ids,
security_group_ids=[
agentic_express_security_group.security_group_id
],
)
express_agentic_service.node.add_dependency(cluster)
express_agentic_service.node.add_dependency(express_service)
allow_express_load_balancer_to_ecs_security_group(
self,
"ExpressAlbToAgenticExpressIngress",
express_service=express_agentic_service,
ecs_security_group=agentic_express_security_group,
container_port=int(AGENT_GRADIO_PORT),
)
# The agentic Express SG is created with the CDK default
# allow_all_outbound=True, so egress to the main app (and to
# ECR/Secrets/KMS/Logs/internet needed by the task) is already
# permitted. An explicit egress rule would be ignored by CDK
# (emitting the ipv4IgnoreEgressRule annotation), so only the
# ingress rule on the main app SG — which actually gates the
# connection — is defined here.
ecs_security_group.add_ingress_rule(
peer=agentic_express_security_group,
connection=ec2.Port.tcp(int(GRADIO_SERVER_PORT)),
description="Agentic Express (Service Connect) to main redaction app",
)
# Service Connect for Express is applied in post_cdk_build_quickstart.py
# after CodeBuild pushes :latest. Express primary containers do not
# define named portMappings at create time; CDK cannot enable SC here.
agentic_public_url = format_express_agentic_public_url(
express_agentic_service.attr_endpoint,
)
sc_backend = (
f"http://{ECS_SERVICE_CONNECT_DISCOVERY_NAME}:"
f"{GRADIO_SERVER_PORT}"
)
agentic_doc_redaction_backend = (
format_main_express_gradio_url(express_alb_dns)
if agentcore_backend
else sc_backend
)
agentic_doc_redaction_backend_desc = (
"DOC_REDACTION_GRADIO_URL on agentic Express for AgentCore "
"(main Express public HTTPS; passed to runtime via runtime_config)"
if agentcore_backend
else (
"DOC_REDACTION_GRADIO_URL on agentic Express "
"(Service Connect, no Cognito)"
)
)
CfnOutput(
self,
"AgenticExpressEndpoint",
value=express_agentic_service.attr_endpoint,
description="HTTPS URL for the agentic ECS Express service (AWS-managed cert)",
)
CfnOutput(
self,
"AgenticAlbSecurityGroupIdOutput",
value=express_ingress_first_load_balancer_security_group(
express_agentic_service
),
description=(
"ID of the agentic Express-managed ALB Security Group "
"(post-deploy CloudFront lockdown target)"
),
)
CfnOutput(
self,
"AgenticPublicUrl",
value=agentic_public_url,
description="Public URL for agentic Express UI (managed HTTPS endpoint)",
)
CfnOutput(
self,
"AgenticDocRedactionBackendUrl",
value=agentic_doc_redaction_backend,
description=agentic_doc_redaction_backend_desc,
)
CfnOutput(
self,
"AgenticExpressServiceName",
value=ECS_PI_EXPRESS_SERVICE_NAME,
)
CfnOutput(
self,
"ServiceConnectNamespace",
value=ECS_SERVICE_CONNECT_NAMESPACE,
description="Cloud Map namespace for Express Service Connect",
)
print(
"ECS Express agentic gateway service defined with Service Connect "
f"backend {sc_backend}; public URL: {agentic_public_url}."
)
except Exception as e:
raise Exception(
"Could not handle ECS Express agentic redaction due to:", e
)
if USE_CLOUDFRONT == "True":
agentic_endpoint = ""
if enable_agentic_express and express_agentic_service is not None:
agentic_endpoint = express_agentic_service.attr_endpoint
create_redaction_cloudfront_distribution(
self,
"RedactionCloudFront",
distribution_comment=CLOUDFRONT_DISTRIBUTION_NAME,
cognito_redirection_url=COGNITO_REDIRECTION_URL,
cloudfront_domain=CLOUDFRONT_DOMAIN,
cognito_user_pool_domain_prefix=COGNITO_USER_POOL_DOMAIN_PREFIX,
aws_region=AWS_REGION,
cognito_user_pool_login_url=COGNITO_USER_POOL_LOGIN_URL,
ssl_certificate_domain=SSL_CERTIFICATE_DOMAIN,
enable_secure_response_headers=(
CLOUDFRONT_ENABLE_SECURE_RESPONSE_HEADERS == "True"
),
attach_secure_response_headers=(
CLOUDFRONT_ATTACH_SECURE_RESPONSE_HEADERS == "True"
),
geo_restriction_raw=CLOUDFRONT_GEO_RESTRICTION,
enable_cloudfront_waf=ENABLE_CLOUDFRONT_WAF == "True",
web_acl_name=WEB_ACL_NAME,
auth_mode=CLOUDFRONT_AUTH_MODE,
magic_link_cookie_name=CLOUDFRONT_MAGIC_LINK_COOKIE_NAME,
magic_link_cookie_max_age_sec=CLOUDFRONT_MAGIC_LINK_COOKIE_MAX_AGE_SEC,
custom_header_name=CUSTOM_HEADER,
custom_header_value=CUSTOM_HEADER_VALUE,
cdk_prefix=CDK_PREFIX,
resource_removal_policy=resource_removal_policy,
main_express_endpoint=express_service.attr_endpoint,
agentic_express_endpoint=agentic_endpoint,
agentic_path_prefix=AGENT_ALB_PATH_PREFIX_NORMALIZED,
)
print("CloudFront distribution defined for Express ingress.")
print("ECS Express Gateway service defined.")
except Exception as e:
raise Exception("Could not handle ECS Express Mode due to:", e)
if not use_express_ingress:
# --- Fargate Task Definition ---
try:
fargate_task_definition_name = FARGATE_TASK_DEFINITION_NAME
read_only_file_system = ECS_READ_ONLY_FILE_SYSTEM == "True"
if os.path.exists(TASK_DEFINITION_FILE_LOCATION):
with open(TASK_DEFINITION_FILE_LOCATION) as f: # Use correct path
task_def_params = json.load(f)
# Need to ensure taskRoleArn and executionRoleArn in JSON are correct ARN strings
else:
epheremal_storage_volume_name = "appEphemeralVolume"
task_def_params = {}
task_def_params["taskRoleArn"] = (
task_role.role_arn
) # Use CDK role object ARN
task_def_params["executionRoleArn"] = (
execution_role.role_arn
) # Use CDK role object ARN
task_def_params["memory"] = ECS_TASK_MEMORY_SIZE
task_def_params["cpu"] = ECS_TASK_CPU_SIZE
container_def = {
"name": full_ecr_repo_name,
"image": ecr_image_loc + ":latest",
"essential": True,
"portMappings": [
{
"containerPort": int(GRADIO_SERVER_PORT),
"hostPort": int(GRADIO_SERVER_PORT),
"protocol": "tcp",
"appProtocol": "http",
}
],
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": ECS_LOG_GROUP_NAME,
"awslogs-region": AWS_REGION,
"awslogs-stream-prefix": "ecs",
},
},
"environmentFiles": (
[]
if enable_headless
else [
{
"value": bucket.bucket_arn
+ f"/{APP_CONFIG_ENV_BASENAME}",
"type": "s3",
}
]
),
"memoryReservation": int(task_def_params["memory"])
- 512, # Reserve some memory for the container
"mountPoints": [
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/logs",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/feedback",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/usage",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/input",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/output",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/tmp",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/app/config",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/tmp/matplotlib_cache",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/tmp",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/var/tmp",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/tmp/tld",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/tmp/gradio_tmp",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/.paddlex",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/home/user/.local/share/spacy/data",
"readOnly": False,
},
{
"sourceVolume": epheremal_storage_volume_name,
"containerPath": "/usr/share/tessdata",
"readOnly": False,
},
],
"readonlyRootFilesystem": read_only_file_system,
"user": "1000",
}
task_def_params["containerDefinitions"] = [container_def]
log_group_name_from_config = task_def_params["containerDefinitions"][0][
"logConfiguration"
]["options"]["awslogs-group"]
cdk_managed_log_group = logs.LogGroup(
self,
"MyTaskLogGroup", # CDK Logical ID
log_group_name=log_group_name_from_config,
retention=logs.RetentionDays.ONE_MONTH,
removal_policy=resource_removal_policy,
)
cdk_managed_log_group.grant_write(execution_role)
epheremal_storage_volume_cdk_obj = ecs.Volume(
name=epheremal_storage_volume_name
)
fargate_task_definition = ecs.FargateTaskDefinition(
self,
"FargateTaskDefinition", # Logical ID
family=fargate_task_definition_name,
cpu=int(task_def_params["cpu"]),
memory_limit_mib=int(task_def_params["memory"]),
task_role=task_role,
execution_role=execution_role,
runtime_platform=ecs.RuntimePlatform(
cpu_architecture=ecs.CpuArchitecture.X86_64,
operating_system_family=ecs.OperatingSystemFamily.LINUX,
),
ephemeral_storage_gib=21, # Minimum is 21 GiB
volumes=[epheremal_storage_volume_cdk_obj],
)
print("Fargate task definition defined.")
# Add container definitions to the task definition object
if task_def_params["containerDefinitions"]:
container_def_params = task_def_params["containerDefinitions"][0]
env_files = []
if container_def_params.get("environmentFiles"):
for env_file_param in container_def_params["environmentFiles"]:
# Need to parse the ARN to get the bucket object and key
env_file_arn_parts = env_file_param["value"].split(":::")
bucket_name_and_key = env_file_arn_parts[-1]
env_bucket_name, env_key = bucket_name_and_key.split("/", 1)
env_file = ecs.EnvironmentFile.from_bucket(bucket, env_key)
env_files.append(env_file)
container_kwargs: Dict[str, Any] = {
"image": ecs.ContainerImage.from_registry(
container_def_params["image"]
),
"logging": ecs.LogDriver.aws_logs(
stream_prefix=container_def_params["logConfiguration"][
"options"
]["awslogs-stream-prefix"],
log_group=cdk_managed_log_group,
),
"environment_files": env_files if env_files else None,
"readonly_root_filesystem": read_only_file_system,
"user": container_def_params.get("user", "1000"),
}
if not enable_headless:
container_kwargs["secrets"] = {
"AWS_USER_POOL_ID": ecs.Secret.from_secrets_manager(
secret, "REDACTION_USER_POOL_ID"
),
"AWS_CLIENT_ID": ecs.Secret.from_secrets_manager(
secret, "REDACTION_CLIENT_ID"
),
"AWS_CLIENT_SECRET": ecs.Secret.from_secrets_manager(
secret, "REDACTION_CLIENT_SECRET"
),
}
container = fargate_task_definition.add_container(
container_def_params["name"],
**container_kwargs,
)
for port_mapping in container_def_params["portMappings"]:
container.add_port_mappings(
ecs.PortMapping(
container_port=int(port_mapping["containerPort"]),
host_port=int(port_mapping["hostPort"]),
name="port-" + str(port_mapping["containerPort"]),
app_protocol=ecs.AppProtocol.http,
protocol=ecs.Protocol.TCP,
)
)
container.add_port_mappings(
ecs.PortMapping(
container_port=80,
host_port=80,
name="port-80",
app_protocol=ecs.AppProtocol.http,
protocol=ecs.Protocol.TCP,
)
)
if container_def_params.get("mountPoints"):
mount_points = []
for mount_point in container_def_params["mountPoints"]:
mount_points.append(
ecs.MountPoint(
container_path=mount_point["containerPath"],
read_only=mount_point["readOnly"],
source_volume=epheremal_storage_volume_name,
)
)
container.add_mount_points(*mount_points)
except Exception as e:
raise Exception("Could not handle Fargate task definition due to:", e)
ecs_service = None
if deploy_web_ingress:
# --- ECS Service ---
try:
ecs_service_name = ECS_SERVICE_NAME
if ECS_USE_FARGATE_SPOT == "True":
use_fargate_spot = "FARGATE_SPOT"
if ECS_USE_FARGATE_SPOT == "False":
use_fargate_spot = "FARGATE"
# Check if service exists - from_service_arn or from_service_name (needs cluster)
try:
# from_service_name is useful if you have the cluster object
ecs_service = ecs.FargateService.from_service_attributes(
self,
"ECSService", # Logical ID
cluster=cluster, # Requires the cluster object
service_name=ecs_service_name,
)
print(f"Using existing ECS service {ecs_service_name}.")
if enable_service_connect:
print(
"Warning: ENABLE_ECS_SERVICE_CONNECT=True but an existing "
"ECS service was imported; enable Service Connect on that "
"service in the ECS console or replace the service via CDK."
)
except Exception:
service_connect_configuration = None
if enable_service_connect:
sc_dns_name = (
ECS_SERVICE_CONNECT_DNS_NAME
or ECS_SERVICE_CONNECT_DISCOVERY_NAME
)
service_connect_configuration = ecs.ServiceConnectProps(
namespace=ECS_SERVICE_CONNECT_NAMESPACE,
services=[
ecs.ServiceConnectService(
port_mapping_name=ECS_SERVICE_CONNECT_PORT_MAPPING_NAME,
discovery_name=ECS_SERVICE_CONNECT_DISCOVERY_NAME,
dns_name=sc_dns_name,
port=int(GRADIO_SERVER_PORT),
)
],
)
# Service will be created with a count of 0, because you haven't yet actually built the initial Docker container with CodeBuild
ecs_service = ecs.FargateService(
self,
"ECSService", # Logical ID
service_name=ecs_service_name, # Explicit resource name
platform_version=ecs.FargatePlatformVersion.LATEST,
capacity_provider_strategies=[
ecs.CapacityProviderStrategy(
capacity_provider=use_fargate_spot, base=0, weight=1
)
],
cluster=cluster,
task_definition=fargate_task_definition, # Link to TD
security_groups=[ecs_security_group], # Link to SG
vpc_subnets=ec2.SubnetSelection(
subnets=self.private_subnets
), # Link to subnets
min_healthy_percent=0,
max_healthy_percent=600,
desired_count=0,
availability_zone_rebalancing=ecs_availability_zone_rebalancing(
ECS_AVAILABILITY_ZONE_REBALANCING
),
service_connect_configuration=service_connect_configuration,
)
print("Successfully created new ECS service")
# Note: Auto-scaling setup would typically go here if needed for the service
except Exception as e:
raise Exception("Could not handle ECS service due to:", e)
if enable_agentic_legacy:
try:
(
agentic_ecs_service,
agentic_ecs_security_group,
_agentic_task_def,
) = create_pi_agent_ecs_resources(
self,
"AgenticRedaction",
vpc=vpc,
cluster=cluster,
private_subnets=self.private_subnets,
pi_ecr_image_uri=agentic_ecr_image_loc,
container_name=ECR_AGENT_REPO_NAME,
task_role=task_role,
execution_role=execution_role,
config_bucket=bucket,
pi_agent_env_s3_key=AGENT_ENV_S3_KEY,
service_name=ECS_PI_SERVICE_NAME,
task_family=ECS_PI_TASK_DEFINITION_NAME,
security_group_name=ECS_PI_SECURITY_GROUP_NAME,
log_group_name=ECS_PI_LOG_GROUP_NAME,
cpu=int(ECS_PI_TASK_CPU_SIZE),
memory_mib=int(ECS_PI_TASK_MEMORY_SIZE),
pi_gradio_port=int(AGENT_GRADIO_PORT),
service_connect_namespace=ECS_SERVICE_CONNECT_NAMESPACE,
service_connect_discovery_name=ECS_SERVICE_CONNECT_DISCOVERY_NAME,
main_app_port=int(GRADIO_SERVER_PORT),
use_fargate_spot=use_fargate_spot,
pi_root_path=pi_alb_root_path_for_container(
AGENT_ALB_PATH_PREFIX_NORMALIZED, AGENT_ALB_ROUTING
),
)
ecs_security_group.add_ingress_rule(
peer=agentic_ecs_security_group,
connection=ec2_port_gradio_server_port,
description="Agentic redaction (Service Connect) to main redaction app",
)
print("Agentic redaction ECS service defined.")
except Exception as e:
raise Exception("Could not handle agentic ECS service due to:", e)
if ENABLE_S3_BATCH_ECS_TRIGGER == "True":
try:
batch_subnet_ids = [s.subnet_id for s in self.private_subnets]
if not batch_subnet_ids:
batch_subnet_ids = [s.subnet_id for s in self.public_subnets]
if not batch_subnet_ids:
raise ValueError(
"S3 batch ECS trigger requires at least one public or "
"private subnet."
)
lambda_asset_dir = os.path.join(
os.path.dirname(__file__), "config", "lambda"
)
batch_lambda = create_s3_batch_ecs_trigger_lambda(
self,
"S3BatchEcsTrigger",
function_name=S3_BATCH_LAMBDA_FUNCTION_NAME or None,
lambda_asset_path=lambda_asset_dir,
output_bucket=output_bucket,
config_bucket=bucket,
cluster_name=CLUSTER_NAME,
task_definition_arn=fargate_task_definition.task_definition_arn,
container_name=full_ecr_repo_name,
subnet_ids=batch_subnet_ids,
security_group_id=ecs_security_group.security_group_id,
execution_role=execution_role,
task_role=task_role,
env_prefix=S3_BATCH_ENV_PREFIX,
env_suffix=S3_BATCH_ENV_SUFFIX,
input_prefix=S3_BATCH_INPUT_PREFIX,
config_prefix=S3_BATCH_CONFIG_PREFIX,
default_params_key=S3_BATCH_DEFAULT_PARAMS_KEY,
assign_public_ip=not bool(self.private_subnets),
)
CfnOutput(
self,
"BatchEcsTriggerLambdaArn",
value=batch_lambda.function_arn,
description="Lambda ARN for S3-triggered batch ECS tasks",
)
CfnOutput(
self,
"BatchJobEnvPrefix",
value=f"s3://{output_bucket.bucket_name}/{S3_BATCH_ENV_PREFIX}",
description="Upload job .env files here to start batch redaction tasks",
)
CfnOutput(
self,
"BatchInputPrefix",
value=f"s3://{output_bucket.bucket_name}/{S3_BATCH_INPUT_PREFIX}",
description="Upload PDFs and other input documents for batch jobs",
)
CfnOutput(
self,
"BatchEcsTriggerLambdaName",
value=batch_lambda.function_name,
description="Lambda that starts ECS batch tasks on job .env upload",
)
if enable_headless:
seed_asset_dir = os.path.join(
os.path.dirname(__file__), "config", "headless_s3_seed"
)
create_headless_s3_batch_seed(
self,
"HeadlessBatchS3Seed",
destination_bucket=output_bucket,
seed_asset_directory=seed_asset_dir,
)
print("S3 batch ECS trigger Lambda defined.")
except Exception as e:
raise Exception("Could not handle S3 batch ECS trigger due to:", e)
if deploy_web_ingress:
# --- ALB TARGET GROUPS AND LISTENERS ---
# This section should primarily define the resources if they are managed by this stack.
# CDK handles adding/removing targets and actions on updates.
# If they might pre-exist outside the stack, you need lookups.
cookie_duration = Duration.hours(8)
target_group_name = ALB_TARGET_GROUP_NAME # Explicit resource name
cloudfront_distribution_url = CLOUDFRONT_DOMAIN
if USE_CLOUDFRONT == "True":
cf_resources = create_redaction_cloudfront_distribution(
self,
"RedactionCloudFront",
distribution_comment=CLOUDFRONT_DISTRIBUTION_NAME,
cognito_redirection_url=COGNITO_REDIRECTION_URL,
cloudfront_domain=CLOUDFRONT_DOMAIN,
cognito_user_pool_domain_prefix=COGNITO_USER_POOL_DOMAIN_PREFIX,
aws_region=AWS_REGION,
cognito_user_pool_login_url=COGNITO_USER_POOL_LOGIN_URL,
ssl_certificate_domain=SSL_CERTIFICATE_DOMAIN,
enable_secure_response_headers=(
CLOUDFRONT_ENABLE_SECURE_RESPONSE_HEADERS == "True"
),
attach_secure_response_headers=(
CLOUDFRONT_ATTACH_SECURE_RESPONSE_HEADERS == "True"
),
geo_restriction_raw=CLOUDFRONT_GEO_RESTRICTION,
enable_cloudfront_waf=ENABLE_CLOUDFRONT_WAF == "True",
web_acl_name=WEB_ACL_NAME,
auth_mode=CLOUDFRONT_AUTH_MODE,
magic_link_cookie_name=CLOUDFRONT_MAGIC_LINK_COOKIE_NAME,
magic_link_cookie_max_age_sec=CLOUDFRONT_MAGIC_LINK_COOKIE_MAX_AGE_SEC,
custom_header_name=CUSTOM_HEADER,
custom_header_value=CUSTOM_HEADER_VALUE,
cdk_prefix=CDK_PREFIX,
resource_removal_policy=resource_removal_policy,
alb=alb,
)
cloudfront_distribution_url = cf_resources.distribution.domain_name
cloudfront_http_rule_priority = (
AGENT_ALB_LISTENER_RULE_PRIORITY
+ (
pi_listener_rule_count(AGENT_ALB_ROUTING)
if enable_agentic_legacy
else 0
)
if enable_agentic_legacy
else 1
)
https_listener = None
try:
# --- CREATING TARGET GROUPS AND ADDING THE CLOUDFRONT LISTENER RULE ---
target_group = elbv2.ApplicationTargetGroup(
self,
"AppTargetGroup", # Logical ID
target_group_name=target_group_name, # Explicit resource name
port=int(GRADIO_SERVER_PORT), # Ensure port is int
protocol=elbv2.ApplicationProtocol.HTTP,
targets=[ecs_service], # Link to ECS Service
stickiness_cookie_duration=cookie_duration,
vpc=vpc, # Target Groups need VPC
)
print(f"ALB target group {target_group_name} defined.")
# First HTTP
listener_port = 80
# Check if Listener exists - from_listener_arn or lookup by port/ALB
http_listener = alb.add_listener(
"HttpListener", # Logical ID
port=listener_port,
open=False, # Be cautious with open=True, usually restrict source SG
)
print(f"ALB listener on port {listener_port} defined.")
if ACM_SSL_CERTIFICATE_ARN:
http_listener.add_action(
"DefaultAction", # Logical ID for the default action
action=elbv2.ListenerAction.redirect(
protocol="HTTPS",
host="#{host}",
port="443",
path="/#{path}",
query="#{query}",
),
)
else:
if USE_CLOUDFRONT == "True":
# The following default action can be added for the listener after a host header rule is added to the listener manually in the Console as suggested in the above comments.
http_listener.add_action(
"DefaultAction", # Logical ID for the default action
action=elbv2.ListenerAction.fixed_response(
status_code=403,
content_type="text/plain",
message_body="Access denied",
),
)
# Add the Listener Rule for the specific CloudFront Host Header
http_listener.add_action(
"CloudFrontHostHeaderRule",
action=elbv2.ListenerAction.forward(
target_groups=[target_group],
stickiness_duration=cookie_duration,
),
priority=cloudfront_http_rule_priority,
conditions=[
elbv2.ListenerCondition.host_headers(
[cloudfront_distribution_url]
) # May have to redefine url in console afterwards if not specified in config file
],
)
else:
# Add the Listener Rule for the specific CloudFront Host Header
http_listener.add_action(
"CloudFrontHostHeaderRule",
action=elbv2.ListenerAction.forward(
target_groups=[target_group],
stickiness_duration=cookie_duration,
),
priority=cloudfront_http_rule_priority,
)
print("Added targets and actions to ALB HTTP listener.")
# Now the same for HTTPS if you have an ACM certificate
if ACM_SSL_CERTIFICATE_ARN:
listener_port_https = 443
# Check if Listener exists - from_listener_arn or lookup by port/ALB
https_listener = add_alb_https_listener_with_cert(
self,
"MyHttpsListener", # Logical ID for the HTTPS listener
alb,
acm_certificate_arn=ACM_SSL_CERTIFICATE_ARN,
default_target_group=target_group,
enable_cognito_auth=True,
cognito_user_pool=user_pool,
cognito_user_pool_client=user_pool_client,
cognito_user_pool_domain=user_pool_domain,
listener_open_to_internet=True,
stickiness_cookie_duration=cookie_duration,
)
if https_listener:
CfnOutput(
self,
"HttpsListenerArn",
value=https_listener.listener_arn,
)
print(f"ALB listener on port {listener_port_https} defined.")
# if USE_CLOUDFRONT == 'True':
# # Add default action to the listener
# https_listener.add_action(
# "DefaultAction", # Logical ID for the default action
# action=elbv2.ListenerAction.fixed_response(
# status_code=403,
# content_type="text/plain",
# message_body="Access denied",
# ),
# )
# # Add the Listener Rule for the specific CloudFront Host Header
# https_listener.add_action(
# "CloudFrontHostHeaderRuleHTTPS",
# action=elbv2.ListenerAction.forward(target_groups=[target_group],stickiness_duration=cookie_duration),
# priority=1, # Example priority. Adjust as needed. Lower is evaluated first.
# conditions=[
# elbv2.ListenerCondition.host_headers([cloudfront_distribution_url])
# ]
# )
# else:
# https_listener.add_action(
# "CloudFrontHostHeaderRuleHTTPS",
# action=elbv2.ListenerAction.forward(target_groups=[target_group],stickiness_duration=cookie_duration))
print("Added targets and actions to ALB HTTPS listener.")
if (
enable_agentic_legacy
and agentic_ecs_service
and alb_security_group
):
agentic_tg_name = AGENT_ALB_TARGET_GROUP_NAME
if len(agentic_tg_name) > 32:
agentic_tg_name = agentic_tg_name[-32:]
_agentic_public_urls = format_agentic_public_urls(
routing_mode=AGENT_ALB_ROUTING,
path_prefix=AGENT_ALB_PATH_PREFIX_NORMALIZED,
host_header=AGENT_ALB_HOST_HEADER,
cloudfront_domain=(
CLOUDFRONT_DOMAIN if USE_CLOUDFRONT == "True" else ""
),
use_https=bool(ACM_SSL_CERTIFICATE_ARN),
)
attach_pi_agent_to_shared_alb(
self,
"AgenticRedaction",
vpc=vpc,
alb_security_group=alb_security_group,
pi_security_group=agentic_ecs_security_group,
pi_service=agentic_ecs_service,
pi_port=int(AGENT_GRADIO_PORT),
routing_mode=AGENT_ALB_ROUTING,
path_prefix=AGENT_ALB_PATH_PREFIX_NORMALIZED,
pi_host_header=AGENT_ALB_HOST_HEADER.strip(),
listener_rule_priority=AGENT_ALB_LISTENER_RULE_PRIORITY,
target_group_name=agentic_tg_name,
stickiness_cookie_duration=cookie_duration,
https_listener=https_listener,
http_listener=http_listener,
acm_certificate_arn=ACM_SSL_CERTIFICATE_ARN or "",
enable_cognito_auth=bool(ACM_SSL_CERTIFICATE_ARN),
cognito_user_pool=user_pool,
cognito_user_pool_client=user_pool_client,
cognito_user_pool_domain=user_pool_domain,
)
agentic_public_url = (
_agentic_public_urls[0] if _agentic_public_urls else ""
)
CfnOutput(
self,
"AgenticPublicUrl",
value=agentic_public_url,
description="Primary public URL for agentic redaction UI (path and/or host ALB rules)",
)
if len(_agentic_public_urls) > 1:
CfnOutput(
self,
"AgenticPublicUrls",
value=", ".join(_agentic_public_urls),
description="All configured agentic UI entry URLs",
)
CfnOutput(
self,
"AgenticAlbPathPrefix",
value=AGENT_ALB_PATH_PREFIX_NORMALIZED,
description="ALB path prefix for agentic UI when AGENT_ALB_ROUTING includes path",
)
CfnOutput(
self,
"AgenticServiceName",
value=ECS_PI_SERVICE_NAME,
)
sc_backend = (
f"http://{ECS_SERVICE_CONNECT_DISCOVERY_NAME}:"
f"{GRADIO_SERVER_PORT}"
)
CfnOutput(
self,
"AgenticDocRedactionBackendUrl",
value=sc_backend,
description="DOC_REDACTION_GRADIO_URL set on agentic tasks (Service Connect)",
)
print(
"Agentic redaction attached to shared ALB "
f"(routing={AGENT_ALB_ROUTING}, urls={', '.join(_agentic_public_urls)})."
)
except Exception as e:
raise Exception(
"Could not handle ALB target groups and listeners due to:", e
)
if not enable_headless:
# Create WAF to attach to load balancer
try:
web_acl_name = LOAD_BALANCER_WEB_ACL_NAME
if get_context_bool(f"exists:{web_acl_name}"):
# Lookup WAF ACL by ARN from context
web_acl_arn = get_context_str(f"arn:{web_acl_name}")
if not web_acl_arn:
raise ValueError(
f"Context value 'arn:{web_acl_name}' is required if Web ACL exists."
)
web_acl = create_web_acl_with_common_rules(
self, web_acl_name, waf_scope="REGIONAL"
) # Assuming it takes scope and name
print(f"Handled ALB WAF web ACL {web_acl_name}.")
else:
web_acl = create_web_acl_with_common_rules(
self, web_acl_name, waf_scope="REGIONAL"
) # Assuming it takes scope and name
print(f"Created ALB WAF web ACL {web_acl_name}.")
wafv2.CfnWebACLAssociation(
self,
id="alb_waf_association",
resource_arn=alb.load_balancer_arn,
web_acl_arn=web_acl.attr_arn,
)
except Exception as e:
raise Exception("Could not handle create ALB WAF web ACL due to:", e)
# --- Outputs for other stacks/regions ---
self.params = dict()
self.params["alb_arn_output"] = alb.load_balancer_arn
if use_express_ingress:
self.params["alb_security_group_id"] = express_alb_security_group_id
else:
self.params["alb_security_group_id"] = (
alb_security_group.security_group_id
)
self.params["alb_dns_name"] = alb.load_balancer_dns_name
CfnOutput(
self,
"AlbArnOutput",
value=alb.load_balancer_arn,
description="ARN of the Application Load Balancer",
export_name=f"{self.stack_name}-AlbArn",
) # Export name must be unique within the account/region
CfnOutput(
self,
"AlbSecurityGroupIdOutput",
value=(
express_alb_security_group_id
if use_express_ingress
else alb_security_group.security_group_id
),
description="ID of the ALB's Security Group",
export_name=f"{self.stack_name}-AlbSgId",
)
CfnOutput(self, "ALBName", value=load_balancer_name)
CfnOutput(self, "RegionalAlbDnsName", value=alb.load_balancer_dns_name)
else:
self.params = dict()
CfnOutput(
self,
"HeadlessDeploymentMode",
value="True",
description="Stack deployed for S3-triggered direct-mode batch tasks only",
)
CfnOutput(
self,
"ECSClusterName",
value=CLUSTER_NAME,
description="ECS cluster used for one-shot Fargate batch tasks",
)
CfnOutput(
self,
"EcsBatchLogGroup",
value=ECS_LOG_GROUP_NAME,
description=(
"CloudWatch log group for batch tasks (streams appear only after "
"the container starts; init failures may have no stream)"
),
)
if not enable_headless and user_pool is not None:
CfnOutput(self, "CognitoPoolId", value=user_pool.user_pool_id)
# Add other outputs if needed
CfnOutput(self, "ECRRepoUri", value=ecr_repo.repository_uri)
if enable_service_connect:
sc_host = ECS_SERVICE_CONNECT_DNS_NAME or ECS_SERVICE_CONNECT_DISCOVERY_NAME
sc_base = f"http://{sc_host}:{GRADIO_SERVER_PORT}"
CfnOutput(
self,
"ServiceConnectHttpBaseUrl",
value=sc_base,
description="Base URL for other ECS services in this cluster (Service Connect)",
)
CfnOutput(
self,
"ServiceConnectAgentApiUrl",
value=f"{sc_base}/agent",
description="FastAPI Agent API prefix (when RUN_FASTAPI=True in app_config.env)",
)
CfnOutput(
self,
"ServiceConnectNamespace",
value=ECS_SERVICE_CONNECT_NAMESPACE,
)
|