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
|
# Reference
<!-- DO NOT EDIT: This document was generated by Puppet Strings -->
## Table of Contents
**Classes**
_Public Classes_
* [`rabbitmq`](#rabbitmq): A module to manage RabbitMQ
* [`rabbitmq::server`](#rabbitmqserver): Backwards compatibility layer to support including `rabbitmq::server` directly.
_Private Classes_
* `rabbitmq::config`: Sets all the configuration values for RabbitMQ and creates the directories for config and ssl.
* `rabbitmq::install`: Ensures that rabbitmq-server exists
* `rabbitmq::install::rabbitmqadmin`: Install rabbitmq admin
* `rabbitmq::management`: Manage presence / absence of user resource for guest management user.
* `rabbitmq::params`: OS Specific parameters and other settings
* `rabbitmq::repo::apt`: requires puppetlabs-apt puppetlabs-stdlib
* `rabbitmq::repo::rhel`: Makes sure that the Packagecloud repo is installed
* `rabbitmq::service`: This class manages the rabbitmq server service itself.
**Resource types**
* [`rabbitmq_binding`](#rabbitmq_binding): Native type for managing rabbitmq bindings rabbitmq_binding { 'binding 1': ensure => present, source => 'myexchange'
* [`rabbitmq_erlang_cookie`](#rabbitmq_erlang_cookie): Type to manage the rabbitmq erlang cookie securely This is essentially a private type used by the rabbitmq::config class to manage the erlan
* [`rabbitmq_exchange`](#rabbitmq_exchange): Native type for managing rabbitmq exchanges
* [`rabbitmq_parameter`](#rabbitmq_parameter): Type for managing rabbitmq parameters
* [`rabbitmq_plugin`](#rabbitmq_plugin): manages rabbitmq plugins
* [`rabbitmq_policy`](#rabbitmq_policy): Type for managing rabbitmq policies
* [`rabbitmq_queue`](#rabbitmq_queue): Native type for managing rabbitmq queue
* [`rabbitmq_user`](#rabbitmq_user): Native type for managing rabbitmq users
* [`rabbitmq_user_permissions`](#rabbitmq_user_permissions): Type for managing rabbitmq user permissions
* [`rabbitmq_vhost`](#rabbitmq_vhost): Native type for managing rabbitmq vhosts
## Classes
### rabbitmq
A module to manage RabbitMQ
#### Examples
##### Basic usage
```puppet
include rabbitmq
```
##### rabbitmq class
```puppet
class { 'rabbitmq':
service_manage => false,
port => '5672',
delete_guest_user => true,
}
```
##### Offline installation from local mirror:
```puppet
class { 'rabbitmq':
key_content => template('openstack/rabbit.pub.key'),
package_gpg_key => '/tmp/rabbit.pub.key',
}
```
##### Use external package key source for any (apt/rpm) package provider:
```puppet
class { 'rabbitmq':
package_gpg_key => 'http://www.some_site.some_domain/some_key.pub.key',
}
```
##### To use RabbitMQ Environment Variables, use the parameters `environment_variables` e.g.:
```puppet
class { 'rabbitmq':
port => '5672',
environment_variables => {
'NODENAME' => 'node01',
'SERVICENAME' => 'RabbitMQ'
}
}
```
##### Change RabbitMQ Config Variables in rabbitmq.config:
```puppet
class { 'rabbitmq':
port => '5672',
config_variables => {
'hipe_compile' => true,
'frame_max' => 131072,
'log_levels' => "[{connection, info}]"
}
}
```
##### Change Erlang Kernel Config Variables in rabbitmq.config
```puppet
class { 'rabbitmq':
port => '5672',
config_kernel_variables => {
'inet_dist_listen_min' => 9100,
'inet_dist_listen_max' => 9105,
}
}
```
##### Change Management Plugin Config Variables in rabbitmq.config
```puppet
class { 'rabbitmq':
config_management_variables => {
'rates_mode' => 'basic',
}
}
```
##### Change Additional Config Variables in rabbitmq.config
```puppet
class { 'rabbitmq':
config_additional_variables => {
'autocluster' => '[{consul_service, "rabbit"},{cluster_name, "rabbit"}]',
'foo' => '[{bar, "baz"}]'
}
}
This will result in the following config appended to the config file:
{autocluster, [{consul_service, "rabbit"},{cluster_name, "rabbit"}]},
{foo, [{bar, "baz"}]}
(This is required for the [autocluster plugin](https://github.com/aweber/rabbitmq-autocluster)
```
##### Use RabbitMQ clustering facilities
```puppet
class { 'rabbitmq':
config_cluster => true,
cluster_nodes => ['rabbit1', 'rabbit2'],
cluster_node_type => 'ram',
erlang_cookie => 'A_SECRET_COOKIE_STRING',
wipe_db_on_cookie_change => true,
}
```
#### Parameters
The following parameters are available in the `rabbitmq` class.
##### `admin_enable`
Data type: `Boolean`
If enabled sets up the management interface/plugin for RabbitMQ.
Default value: $rabbitmq::params::admin_enable
##### `auth_backends`
Data type: `Optional[Array]`
An array specifying authorization/authentication backend to use. Single quotes should be placed around array entries,
ex. `['{foo, baz}', 'baz']` Defaults to [rabbit_auth_backend_internal], and if using LDAP defaults to [rabbit_auth_backend_internal,
rabbit_auth_backend_ldap].
Default value: `undef`
##### `cluster_node_type`
Data type: `Enum['ram', 'disk', 'disc']`
Choose between disc and ram nodes.
Default value: $rabbitmq::params::cluster_node_type
##### `cluster_nodes`
Data type: `Array`
An array of nodes for clustering.
Default value: $rabbitmq::params::cluster_nodes
##### `cluster_partition_handling`
Data type: `String`
Value to set for `cluster_partition_handling` RabbitMQ configuration variable.
Default value: $rabbitmq::params::cluster_partition_handling
##### `collect_statistics_interval`
Data type: `Optional[Integer]`
Set the collect_statistics_interval in rabbitmq.config
Default value: `undef`
##### `config`
Data type: `String`
The file to use as the rabbitmq.config template.
Default value: $rabbitmq::params::config
##### `config_additional_variables`
Data type: `Hash`
Additional config variables in rabbitmq.config
Default value: $rabbitmq::params::config_additional_variables
##### `config_cluster`
Data type: `Boolean`
Enable or disable clustering support.
Default value: $rabbitmq::params::config_cluster
##### `config_kernel_variables`
Data type: `Hash`
Hash of Erlang kernel configuration variables to set (see [Variables Configurable in rabbitmq.config](#variables-configurable-in-rabbitmq.config)).
Default value: $rabbitmq::params::config_kernel_variables
##### `config_path`
Data type: `Stdlib::Absolutepath`
The path to write the RabbitMQ configuration file to.
Default value: $rabbitmq::params::config_path
##### `config_ranch`
Data type: `Boolean`
When true, suppress config directives needed for older (<3.6) RabbitMQ versions.
Default value: $rabbitmq::params::config_ranch
##### `config_management_variables`
Data type: `Hash`
Hash of configuration variables for the [Management Plugin](https://www.rabbitmq.com/management.html).
Default value: $rabbitmq::params::config_management_variables
##### `config_stomp`
Data type: `Boolean`
Enable or disable stomp.
Default value: $rabbitmq::params::config_stomp
##### `config_shovel`
Data type: `Boolean`
Enable or disable shovel.
Default value: $rabbitmq::params::config_shovel
##### `config_shovel_statics`
Data type: `Hash`
Hash of static shovel configurations
Default value: $rabbitmq::params::config_shovel_statics
##### `config_variables`
Data type: `Hash`
To set config variables in rabbitmq.config
Default value: $rabbitmq::params::config_variables
##### `default_user`
Data type: `String`
Username to set for the `default_user` in rabbitmq.config.
Default value: $rabbitmq::params::default_user
##### `default_pass`
Data type: `String`
Password to set for the `default_user` in rabbitmq.config.
Default value: $rabbitmq::params::default_pass
##### `delete_guest_user`
Data type: `Boolean`
Controls whether default guest user is deleted.
Default value: $rabbitmq::params::delete_guest_user
##### `env_config`
Data type: `String`
The template file to use for rabbitmq_env.config.
Default value: $rabbitmq::params::env_config
##### `env_config_path`
Data type: `Stdlib::Absolutepath`
The path to write the rabbitmq_env.config file to.
Default value: $rabbitmq::params::env_config_path
##### `environment_variables`
Data type: `Hash`
RabbitMQ Environment Variables in rabbitmq_env.config
Default value: $rabbitmq::params::environment_variables
##### `erlang_cookie`
Data type: `Optional[String]`
The erlang cookie to use for clustering - must be the same between all nodes. This value has no default and must be
set explicitly if using clustering. If you run Pacemaker and you don't want to use RabbitMQ buildin cluster, you can set config_cluster
to 'False' and set 'erlang_cookie'.
Default value: `undef`
##### `file_limit`
Data type: `Variant[Integer[-1],Enum['unlimited'],Pattern[/^(infinity|\d+(:(infinity|\d+))?)$/]]`
Set rabbitmq file ulimit. Defaults to 16384. Only available on systems with `$::osfamily == 'Debian'` or `$::osfamily == 'RedHat'`.
Default value: $rabbitmq::params::file_limit
##### `heartbeat`
Data type: `Optional[Integer]`
Set the heartbeat timeout interval, default is unset which uses the builtin server defaults of 60 seconds. Setting this
Default value: `undef`
##### `inetrc_config`
Data type: `String`
Template to use for the inetrc config
Default value: $rabbitmq::params::inetrc_config
##### `inetrc_config_path`
Data type: `Stdlib::Absolutepath`
Path of the file to push the inetrc config to.
Default value: $rabbitmq::params::inetrc_config_path
##### `ipv6`
Data type: `Boolean`
Whether to listen on ipv6
Default value: $rabbitmq::params::ipv6
##### `interface`
Data type: `Optional[String]`
Interface to bind to (sets tcp_listeners parameter). By default, bind to all interfaces
to `0` will disable heartbeats.
Default value: `undef`
##### `key_content`
Data type: `Optional[String]`
Uses content method for Debian OS family. Should be a template for apt::source class. Overrides `package_gpg_key`
behavior, if enabled. Undefined by default.
Default value: `undef`
##### `ldap_auth`
Data type: `Boolean`
Set to true to enable LDAP auth.
Default value: $rabbitmq::params::ldap_auth
##### `ldap_server`
Data type: `String`
LDAP server to use for auth.
Default value: $rabbitmq::params::ldap_server
##### `ldap_user_dn_pattern`
Data type: `Optional[String]`
User DN pattern for LDAP auth.
Default value: $rabbitmq::params::ldap_user_dn_pattern
##### `ldap_other_bind`
Data type: `String`
How to bind to the LDAP server. Defaults to 'anon'.
Default value: $rabbitmq::params::ldap_other_bind
##### `ldap_config_variables`
Data type: `Hash`
Hash of other LDAP config variables.
Default value: $rabbitmq::params::ldap_config_variables
##### `ldap_use_ssl`
Data type: `Boolean`
Set to true to use SSL for the LDAP server.
Default value: $rabbitmq::params::ldap_use_ssl
##### `ldap_port`
Data type: `Integer[1, 65535]`
Numeric port for LDAP server.
Default value: $rabbitmq::params::ldap_port
##### `ldap_log`
Data type: `Boolean`
Set to true to log LDAP auth.
Default value: $rabbitmq::params::ldap_log
##### `manage_python`
Data type: `Boolean`
If enabled, on platforms that don't provide a Python 2 package by default, ensure that the python package is
installed (for rabbitmqadmin). This will only apply if `admin_enable` and `service_manage` are set.
Default value: $rabbitmq::params::manage_python
##### `management_hostname`
Data type: `Optional[String]`
The hostname for the RabbitMQ management interface.
Default value: `undef`
##### `management_port`
Data type: `Integer[1, 65535]`
The port for the RabbitMQ management interface.
Default value: $rabbitmq::params::management_port
##### `management_ip_address`
Data type: `Optional[String]`
Allows you to set the IP for management interface to bind to separately. Set to 127.0.0.1 to bind to
localhost only, or 0.0.0.0 to bind to all interfaces.
Default value: `undef`
##### `management_ssl`
Data type: `Boolean`
Enable/Disable SSL for the management port. Has an effect only if ssl => true.
Default value: $rabbitmq::params::management_ssl
##### `node_ip_address`
Data type: `Optional[String]`
Allows you to set the IP for RabbitMQ service to bind to. Set to 127.0.0.1 to bind to localhost only, or 0.0.0.0
to bind to all interfaces.
Default value: `undef`
##### `package_apt_pin`
Data type: `Optional[Variant[Numeric, String]]`
Whether to pin the package to a particular source
Default value: `undef`
##### `package_ensure`
Data type: `String`
Determines the ensure state of the package. Set to installed by default, but could be changed to latest.
Default value: $rabbitmq::params::package_ensure
##### `package_gpg_key`
Data type: `Optional[String]`
RPM package GPG key to import. Uses source method. Should be a URL for Debian/RedHat OS family, or a file name for
RedHat OS family. Set to https://www.rabbitmq.com/rabbitmq-release-signing-key.asc for RedHat OS Family and
https://packagecloud.io/rabbitmq/rabbitmq-server/gpgkey for Debian OS Family by default. Note, that `key_content`, if specified, would
override this parameter for Debian OS family.
Default value: $rabbitmq::params::package_gpg_key
##### `package_name`
Data type: `Variant[String, Array]`
Name(s) of the package(s) to install
Default value: $rabbitmq::params::package_name
##### `port`
Data type: `Integer`
The RabbitMQ port.
Default value: $rabbitmq::params::port
##### `repos_ensure`
Data type: `Boolean`
Ensure that a repo with the official (and newer) RabbitMQ package is configured, along with its signing key.
Defaults to false (use system packages). This does not ensure that soft dependencies (like EPEL on RHEL systems) are present.
Default value: $rabbitmq::params::repos_ensure
##### `service_ensure`
Data type: `Enum['running', 'stopped']`
The state of the service.
Default value: $rabbitmq::params::service_ensure
##### `service_manage`
Data type: `Boolean`
Determines if the service is managed.
Default value: $rabbitmq::params::service_manage
##### `service_name`
Data type: `String`
The name of the service to manage.
Default value: $rabbitmq::params::service_name
##### `service_restart`
Data type: `Boolean`
Default defined in param.pp. Whether to restart the service on config change.
Default value: $rabbitmq::params::service_restart
##### `ssl`
Data type: `Boolean`
Configures the service for using SSL.
Default value: $rabbitmq::params::ssl
##### `ssl_cacert`
Data type: `Optional[Stdlib::Absolutepath]`
CA cert path to use for SSL.
Default value: `undef`
##### `ssl_cert`
Data type: `Optional[Stdlib::Absolutepath]`
Cert to use for SSL.
Default value: `undef`
##### `ssl_cert_password`
Data type: `Optional[String]`
Password used when generating CSR.
Default value: `undef`
##### `ssl_depth`
Data type: `Optional[Integer]`
SSL verification depth.
Default value: `undef`
##### `ssl_dhfile`
Data type: `Optional[Stdlib::Absolutepath]`
Use this dhparam file [example: generate with `openssl dhparam -out /etc/rabbitmq/ssl/dhparam.pem 2048`
Default value: `undef`
##### `ssl_erl_dist`
Data type: `Boolean`
Whether to use the erlang package's SSL (relies on the ssl_erl_path fact)
Default value: $rabbitmq::params::ssl_erl_dist
##### `ssl_honor_cipher_order`
Data type: `Boolean`
Force use of server cipher order
Default value: $rabbitmq::params::ssl_honor_cipher_order
##### `ssl_interface`
Data type: `Optional[String]`
Interface for SSL listener to bind to
Default value: `undef`
##### `ssl_key`
Data type: `Optional[Stdlib::Absolutepath]`
Key to use for SSL.
Default value: `undef`
##### `ssl_only`
Data type: `Boolean`
Configures the service to only use SSL. No cleartext TCP listeners will be created. Requires that ssl => true and
port => undef
Default value: $rabbitmq::params::ssl_only
##### `ssl_management_port`
Data type: `Integer[1, 65535]`
SSL management port.
Default value: $rabbitmq::params::ssl_management_port
##### `ssl_port`
Data type: `Integer[1, 65535]`
SSL port for RabbitMQ
Default value: $rabbitmq::params::ssl_port
##### `ssl_reuse_sessions`
Data type: `Boolean`
Reuse ssl sessions
Default value: $rabbitmq::params::ssl_reuse_sessions
##### `ssl_secure_renegotiate`
Data type: `Boolean`
Use ssl secure renegotiate
Default value: $rabbitmq::params::ssl_secure_renegotiate
##### `ssl_stomp_port`
Data type: `Integer[1, 65535]`
SSL stomp port.
Default value: $rabbitmq::params::ssl_stomp_port
##### `ssl_verify`
Data type: `Enum['verify_none','verify_peer']`
rabbitmq.config SSL verify setting.
Default value: $rabbitmq::params::ssl_verify
##### `ssl_fail_if_no_peer_cert`
Data type: `Boolean`
rabbitmq.config `fail_if_no_peer_cert` setting.
Default value: $rabbitmq::params::ssl_fail_if_no_peer_cert
##### `ssl_management_verify`
Data type: `Enum['verify_none','verify_peer']`
rabbitmq.config SSL verify setting for rabbitmq_management.
Default value: $rabbitmq::params::ssl_management_verify
##### `ssl_versions`
Data type: `Optional[Array]`
Choose which SSL versions to enable. Example: `['tlsv1.2', 'tlsv1.1']` Note
that it is recommended to disable `sslv3 and `tlsv1` to prevent against
POODLE and BEAST attacks. Please see the
[RabbitMQ SSL](https://www.rabbitmq.com/ssl.html) documentation for more information.
Default value: `undef`
##### `ssl_ciphers`
Data type: `Array`
Support only a given list of SSL ciphers. Example: `['dhe_rsa,aes_256_cbc,sha','dhe_dss,aes_256_cbc,sha', 'ecdhe_rsa,aes_256_cbc,sha']`. Supported ciphers in your install can be listed with: rabbitmqctl eval 'ssl:cipher_suites().'
Functionality can be tested with cipherscan or similar tool: https://github.com/jvehent/cipherscan.git
Default value: $rabbitmq::params::ssl_ciphers
##### `stomp_port`
Data type: `Integer[1, 65535]`
The port to use for Stomp.
Default value: $rabbitmq::params::stomp_port
##### `stomp_ssl_only`
Data type: `Boolean`
Configures STOMP to only use SSL. No cleartext STOMP TCP listeners will be created. Requires setting ssl_stomp_port also.
Default value: $rabbitmq::params::stomp_ssl_only
##### `stomp_ensure`
Data type: `Boolean`
Enable to install the stomp plugin.
Default value: $rabbitmq::params::stomp_ensure
##### `tcp_backlog`
Data type: `Integer`
The size of the backlog on TCP connections.
Default value: $rabbitmq::params::tcp_backlog
##### `tcp_keepalive`
Data type: `Boolean`
Enable TCP connection keepalive for RabbitMQ service.
Default value: $rabbitmq::params::tcp_keepalive
##### `tcp_recbuf`
Data type: `Optional[Integer]`
Corresponds to recbuf in RabbitMQ `tcp_listen_options`
Default value: `undef`
##### `tcp_sndbuf`
Data type: `Optional[Integer]`
Integer, corresponds to sndbuf in RabbitMQ `tcp_listen_options`
Default value: `undef`
##### `wipe_db_on_cookie_change`
Data type: `Boolean`
Boolean to determine if we should DESTROY AND DELETE the RabbitMQ database.
Default value: $rabbitmq::params::wipe_db_on_cookie_change
##### `rabbitmq_user`
Data type: `String`
OS dependent The system user the rabbitmq daemon runs as.
Default value: $rabbitmq::params::rabbitmq_user
##### `rabbitmq_group`
Data type: `String`
OS dependent The system group the rabbitmq daemon runs as.
Default value: $rabbitmq::params::rabbitmq_group
##### `rabbitmq_home`
Data type: `Stdlib::Absolutepath`
OS dependent The home directory of the rabbitmq deamon.
Default value: $rabbitmq::params::rabbitmq_home
##### `rabbitmqadmin_package`
Data type: `Optional[String]`
OS dependent If undef: install rabbitmqadmin via archive, otherwise via package
Default value: $rabbitmq::params::rabbitmqadmin_package
##### `archive_options`
Data type: `Array`
Extra options to Archive resource to download rabbitmqadmin file
Default value: $rabbitmq::params::archive_options
##### `loopback_users`
Data type: `Array`
This option configures a list of users to allow access via the loopback interfaces
Default value: $rabbitmq::params::loopback_users
##### `package_source`
Data type: `Optional[String]`
Default value: `undef`
##### `package_provider`
Data type: `Optional[String]`
Default value: `undef`
##### `ssl_management_fail_if_no_peer_cert`
Data type: `Boolean`
Default value: $rabbitmq::params::ssl_management_fail_if_no_peer_cert
### rabbitmq::server
This module manages the installation and config of the rabbitmq server. It is used as backward compability layer for modules which
require rabbitmq::server instead of rabbitmq class.
#### Parameters
The following parameters are available in the `rabbitmq::server` class.
##### `port`
Data type: `Integer`
Port that rabbitmq server should listen to
Default value: $rabbitmq::params::port
##### `delete_guest_user`
Data type: `Boolean`
Whether or not to delete the default user
Default value: $rabbitmq::params::delete_guest_user
##### `package_name`
Data type: `Variant[String, Array]`
Name of rabbitmq package
Default value: $rabbitmq::params::package_name
##### `service_name`
Data type: `String`
Name of rabbitmq service
Default value: $rabbitmq::params::service_name
##### `service_ensure`
Data type: `Enum['running', 'stopped']`
Desired ensure state for service
Default value: $rabbitmq::params::service_ensure
##### `service_manage`
Data type: `Boolean`
Determines if the service is managed
Default value: $rabbitmq::params::service_manage
##### `config_stomp`
Data type: `Boolean`
Enable or disable stomp
Default value: $rabbitmq::params::config_stomp
##### `stomp_port`
Data type: `Integer[1, 65535]`
Port stomp should be listening on
Default value: $rabbitmq::params::stomp_port
##### `node_ip_address`
Data type: `Optional[String]`
IP address for rabbitmq to bind to
Default value: $rabbitmq::params::node_ip_address
##### `config`
Data type: `String`
Contents of config file
Default value: $rabbitmq::params::config
##### `env_config`
Data type: `String`
Contents of env-config file
Default value: $rabbitmq::params::env_config
##### `config_cluster`
Data type: `Boolean`
Whether to configure a RabbitMQ cluster
Default value: $rabbitmq::params::config_cluster
##### `cluster_nodes`
Data type: `Array`
Which nodes to cluster with (including the current one)
Default value: $rabbitmq::params::cluster_nodes
##### `cluster_node_type`
Data type: `Enum['ram', 'disk', 'disc']`
Type of cluster node (disc/disk or ram)
Default value: $rabbitmq::params::cluster_node_type
##### `erlang_cookie`
Data type: `Optional[String]`
Erlang cookie, must be the same for all nodes in a cluster
Default value: $rabbitmq::params::erlang_cookie
##### `wipe_db_on_cookie_change`
Data type: `Boolean`
Whether to wipe the RabbitMQ data if the specified erlang_cookie differs from the current one. This is a sad parameter: actually, if
the cookie indeed differs, then wiping the database is the *only* thing you can do. You're only required to set this parameter to
true as a sign that you realise this.
Default value: $rabbitmq::params::wipe_db_on_cookie_change
## Resource types
### rabbitmq_binding
Native type for managing rabbitmq bindings
rabbitmq_binding { 'binding 1':
ensure => present,
source => 'myexchange',
destination => 'myqueue',
vhost => 'myvhost',
user => 'dan',
password => 'bar',
destination_type => 'queue',
routing_key => 'key1',
arguments => {},
}
rabbitmq_binding { 'binding 2':
ensure => present,
source => 'myexchange',
destination => 'myqueue',
vhost => 'myvhost',
user => 'dan',
password => 'bar',
destination_type => 'queue',
routing_key => 'key2',
arguments => {},
}
#### Examples
##### Create a rabbitmq_binding
```puppet
rabbitmq_binding { 'myexchange@myqueue@myvhost':
user => 'dan',
password => 'bar',
destination_type => 'queue',
routing_key => '#',
arguments => {},
ensure => present,
}
```
##### Create bindings with same source / destination / vhost but different routing key using individual parameters
```puppet
```
#### Properties
The following properties are available in the `rabbitmq_binding` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
##### `source`
Valid values: %r{^\S+$}
namevar
source of binding
##### `destination`
Valid values: %r{^\S+$}
namevar
destination of binding
##### `vhost`
Valid values: %r{^\S+$}
namevar
vhost
Default value: /
##### `routing_key`
Valid values: %r{^\S*$}
namevar
binding routing_key
##### `destination_type`
Valid values: %r{queue|exchange}
binding destination_type
Default value: queue
##### `arguments`
binding arguments
#### Parameters
The following parameters are available in the `rabbitmq_binding` type.
##### `name`
namevar
resource name, either source@destination@vhost or arbitrary name with params
##### `user`
Valid values: %r{^\S+$}
The user to use to connect to rabbitmq
Default value: guest
##### `password`
Valid values: %r{\S+}
The password to use to connect to rabbitmq
Default value: guest
### rabbitmq_erlang_cookie
Type to manage the rabbitmq erlang cookie securely
This is essentially a private type used by the rabbitmq::config class
to manage the erlang cookie. It replaces the rabbitmq_erlang_cookie fact
from earlier versions of this module. It manages the content of the cookie
usually located at "${rabbitmq_home}/.erlang.cookie", which includes
stopping the rabbitmq service and wiping out the database at
"${rabbitmq_home}/mnesia" if the user agrees to it. We don't recommend using
this type directly.
#### Properties
The following properties are available in the `rabbitmq_erlang_cookie` type.
##### `content`
Valid values: %r{^\S+$}
Content of cookie
#### Parameters
The following parameters are available in the `rabbitmq_erlang_cookie` type.
##### `path`
##### `force`
Valid values: `true`, `false`
Default value: `false`
##### `rabbitmq_user`
Default value: rabbitmq
##### `rabbitmq_group`
Default value: rabbitmq
##### `rabbitmq_home`
Default value: /var/lib/rabbitmq
##### `service_name`
Valid values: %r{^\S+$}
### rabbitmq_exchange
Native type for managing rabbitmq exchanges
#### Examples
##### Create a rabbitmq_exchange
```puppet
rabbitmq_exchange { 'myexchange@myvhost':
user => 'dan',
password => 'bar',
type => 'topic',
ensure => present,
internal => false,
auto_delete => false,
durable => true,
arguments => {
hash-header => 'message-distribution-hash'
}
}
```
#### Properties
The following properties are available in the `rabbitmq_exchange` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
#### Parameters
The following parameters are available in the `rabbitmq_exchange` type.
##### `name`
Valid values: %r{^\S*@\S+$}
namevar
Name of exchange
##### `type`
Valid values: %r{^\S+$}
Exchange type to be set *on creation*
##### `durable`
Valid values: %r{^\S+$}
Exchange durability to be set *on creation*
Default value: `false`
##### `auto_delete`
Valid values: %r{^\S+$}
Exchange auto delete option to be set *on creation*
Default value: `false`
##### `internal`
Valid values: %r{^\S+$}
Exchange internal option to be set *on creation*
Default value: `false`
##### `arguments`
Exchange arguments example: {"hash-header": "message-distribution-hash"}
##### `user`
Valid values: %r{^\S+$}
The user to use to connect to rabbitmq
Default value: guest
##### `password`
Valid values: %r{\S+}
The password to use to connect to rabbitmq
Default value: guest
### rabbitmq_parameter
Type for managing rabbitmq parameters
#### Examples
##### Create some rabbitmq_parameter resources
```puppet
rabbitmq_parameter { 'documentumShovel@/':
component_name => '',
value => {
'src-uri' => 'amqp://',
'src-queue' => 'my-queue',
'dest-uri' => 'amqp://remote-server',
'dest-queue' => 'another-queue',
},
}
rabbitmq_parameter { 'documentumFed@/':
component_name => 'federation-upstream',
value => {
'uri' => 'amqp://myserver',
'expires' => '360000',
},
}
```
#### Properties
The following properties are available in the `rabbitmq_parameter` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
##### `component_name`
The component_name to use when setting parameter, eg: shovel or federation
##### `value`
A hash of values to use with the component name you are setting
#### Parameters
The following parameters are available in the `rabbitmq_parameter` type.
##### `name`
Valid values: %r{^\S+@\S+$}
namevar
combination of name@vhost to set parameter for
### rabbitmq_plugin
manages rabbitmq plugins
#### Examples
##### query all currently enabled plugins
```puppet
$ puppet resource rabbitmq_plugin
```
##### Ensure a rabbitmq_plugin resource
```puppet
rabbitmq_plugin {'rabbitmq_stomp':
ensure => present,
}
```
#### Properties
The following properties are available in the `rabbitmq_plugin` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
#### Parameters
The following parameters are available in the `rabbitmq_plugin` type.
##### `name`
Valid values: %r{^\S+$}
namevar
The name of the plugin to enable
##### `umask`
Sets the octal umask to be used while creating this resource
Default value: 0022
### rabbitmq_policy
Type for managing rabbitmq policies
#### Examples
##### Create a rabbitmq_policy
```puppet
rabbitmq_policy { 'ha-all@myvhost':
pattern => '.*',
priority => 0,
applyto => 'all',
definition => {
'ha-mode' => 'all',
'ha-sync-mode' => 'automatic',
},
}
```
#### Properties
The following properties are available in the `rabbitmq_policy` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
##### `pattern`
policy pattern
##### `applyto`
Valid values: all, exchanges, queues
policy apply to
Default value: all
##### `definition`
policy definition
##### `priority`
Valid values: %r{^\d+$}
policy priority
Default value: 0
#### Parameters
The following parameters are available in the `rabbitmq_policy` type.
##### `name`
Valid values: %r{^\S+@\S+$}
namevar
combination of policy@vhost to create policy for
### rabbitmq_queue
Native type for managing rabbitmq queue
#### Examples
##### Create a rabbitmq_queue
```puppet
rabbitmq_queue { 'myqueue@myvhost':
ensure => present,
user => 'dan',
password => 'bar',
durable => true,
auto_delete => false,
arguments => {
x-message-ttl => 123,
x-dead-letter-exchange => 'other'
},
}
```
#### Properties
The following properties are available in the `rabbitmq_queue` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
#### Parameters
The following parameters are available in the `rabbitmq_queue` type.
##### `name`
Valid values: %r{^\S*@\S+$}
namevar
Name of queue
##### `durable`
Valid values: %r{true|false}
Queue is durable
Default value: `true`
##### `auto_delete`
Valid values: %r{true|false}
Queue will be auto deleted
Default value: `false`
##### `arguments`
Queue arguments example: {x-message-ttl => 60, x-expires => 10}
##### `user`
Valid values: %r{^\S+$}
The user to use to connect to rabbitmq
Default value: guest
##### `password`
Valid values: %r{\S+}
The password to use to connect to rabbitmq
Default value: guest
### rabbitmq_user
Native type for managing rabbitmq users
#### Examples
##### query all current users
```puppet
$ puppet resource rabbitmq_user
```
##### Configure a user, dan
```puppet
rabbitmq_user { 'dan':
admin => true,
password => 'bar',
}
```
##### Optional parameter tags will set further rabbitmq tags like monitoring, policymaker, etc.
```puppet
To set the administrator tag use admin-flag.
rabbitmq_user { 'dan':
admin => true,
password => 'bar',
tags => ['monitoring', 'tag1'],
}
```
#### Properties
The following properties are available in the `rabbitmq_user` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
##### `password`
User password to be set *on creation* and validated each run
##### `admin`
Valid values: %r{true|false}
whether or not user should be an admin
Default value: false
##### `tags`
additional tags for the user
Default value: []
#### Parameters
The following parameters are available in the `rabbitmq_user` type.
##### `name`
Valid values: %r{^\S+$}
namevar
Name of user
### rabbitmq_user_permissions
Type for managing rabbitmq user permissions
#### Examples
##### Define some rabbitmq_user_permissions
```puppet
rabbitmq_user_permissions { 'dan@myvhost':
configure_permission => '.*',
read_permission => '.*',
write_permission => '.*',
}
```
#### Properties
The following properties are available in the `rabbitmq_user_permissions` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
##### `configure_permission`
regexp representing configuration permissions
##### `read_permission`
regexp representing read permissions
##### `write_permission`
regexp representing write permissions
#### Parameters
The following parameters are available in the `rabbitmq_user_permissions` type.
##### `name`
Valid values: %r{^\S+@\S+$}
namevar
combination of user@vhost to grant privileges to
### rabbitmq_vhost
Native type for managing rabbitmq vhosts
#### Examples
##### query all current vhosts
```puppet
$ puppet resource rabbitmq_vhost`
```
##### Create a rabbitmq_vhost
```puppet
rabbitmq_vhost { 'myvhost':
ensure => present,
}
```
#### Properties
The following properties are available in the `rabbitmq_vhost` type.
##### `ensure`
Valid values: present, absent
The basic property that the resource should be in.
Default value: present
#### Parameters
The following parameters are available in the `rabbitmq_vhost` type.
##### `name`
Valid values: %r{^\S+$}
namevar
The name of the vhost to add
|