pulumi-cloudamqp 3.18.0a1709359306__py3-none-any.whl → 3.21.0a1736832130__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-cloudamqp might be problematic. Click here for more details.
- pulumi_cloudamqp/__init__.py +9 -0
- pulumi_cloudamqp/_inputs.py +157 -6
- pulumi_cloudamqp/_utilities.py +41 -5
- pulumi_cloudamqp/account_action.py +5 -0
- pulumi_cloudamqp/alarm.py +5 -124
- pulumi_cloudamqp/config/__init__.pyi +5 -0
- pulumi_cloudamqp/config/vars.py +5 -0
- pulumi_cloudamqp/custom_domain.py +9 -2
- pulumi_cloudamqp/extra_disk_size.py +46 -15
- pulumi_cloudamqp/get_account.py +12 -71
- pulumi_cloudamqp/get_account_vpcs.py +14 -5
- pulumi_cloudamqp/get_alarm.py +31 -7
- pulumi_cloudamqp/get_credentials.py +19 -7
- pulumi_cloudamqp/get_instance.py +30 -47
- pulumi_cloudamqp/get_nodes.py +22 -7
- pulumi_cloudamqp/get_notification.py +25 -7
- pulumi_cloudamqp/get_plugins.py +51 -10
- pulumi_cloudamqp/get_plugins_community.py +51 -10
- pulumi_cloudamqp/get_upgradable_versions.py +19 -7
- pulumi_cloudamqp/get_vpc_gcp_info.py +28 -9
- pulumi_cloudamqp/get_vpc_info.py +25 -9
- pulumi_cloudamqp/instance.py +70 -115
- pulumi_cloudamqp/integration_aws_eventbridge.py +11 -2
- pulumi_cloudamqp/integration_log.py +432 -43
- pulumi_cloudamqp/integration_metric.py +326 -23
- pulumi_cloudamqp/node_actions.py +59 -46
- pulumi_cloudamqp/notification.py +118 -61
- pulumi_cloudamqp/outputs.py +71 -60
- pulumi_cloudamqp/plugin.py +54 -35
- pulumi_cloudamqp/plugin_community.py +56 -37
- pulumi_cloudamqp/privatelink_aws.py +49 -60
- pulumi_cloudamqp/privatelink_azure.py +49 -60
- pulumi_cloudamqp/provider.py +5 -5
- pulumi_cloudamqp/pulumi-plugin.json +2 -1
- pulumi_cloudamqp/rabbit_configuration.py +5 -0
- pulumi_cloudamqp/security_firewall.py +70 -24
- pulumi_cloudamqp/upgrade_lavinmq.py +276 -0
- pulumi_cloudamqp/upgrade_rabbitmq.py +300 -27
- pulumi_cloudamqp/vpc.py +17 -6
- pulumi_cloudamqp/vpc_connect.py +63 -80
- pulumi_cloudamqp/vpc_gcp_peering.py +310 -103
- pulumi_cloudamqp/vpc_peering.py +19 -2
- pulumi_cloudamqp/webhook.py +91 -84
- {pulumi_cloudamqp-3.18.0a1709359306.dist-info → pulumi_cloudamqp-3.21.0a1736832130.dist-info}/METADATA +7 -6
- pulumi_cloudamqp-3.21.0a1736832130.dist-info/RECORD +49 -0
- {pulumi_cloudamqp-3.18.0a1709359306.dist-info → pulumi_cloudamqp-3.21.0a1736832130.dist-info}/WHEEL +1 -1
- pulumi_cloudamqp-3.18.0a1709359306.dist-info/RECORD +0 -48
- {pulumi_cloudamqp-3.18.0a1709359306.dist-info → pulumi_cloudamqp-3.21.0a1736832130.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['IntegrationLogArgs', 'IntegrationLog']
|
|
@@ -67,7 +72,9 @@ class IntegrationLogArgs:
|
|
|
67
72
|
:param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
68
73
|
:param pulumi.Input[str] subsystem: The subsystem name for Coralogix.
|
|
69
74
|
:param pulumi.Input[str] table: The table name for Azure monitor.
|
|
70
|
-
:param pulumi.Input[str] tags:
|
|
75
|
+
:param pulumi.Input[str] tags: Tags. e.g. `env=prod,region=europe`.
|
|
76
|
+
|
|
77
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
71
78
|
:param pulumi.Input[str] tenant_id: The tenant identifier for Azure monitor.
|
|
72
79
|
:param pulumi.Input[str] token: Token used for authentication.
|
|
73
80
|
:param pulumi.Input[str] url: Endpoint to log integration.
|
|
@@ -395,7 +402,9 @@ class IntegrationLogArgs:
|
|
|
395
402
|
@pulumi.getter
|
|
396
403
|
def tags(self) -> Optional[pulumi.Input[str]]:
|
|
397
404
|
"""
|
|
398
|
-
|
|
405
|
+
Tags. e.g. `env=prod,region=europe`.
|
|
406
|
+
|
|
407
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
399
408
|
"""
|
|
400
409
|
return pulumi.get(self, "tags")
|
|
401
410
|
|
|
@@ -496,7 +505,9 @@ class _IntegrationLogState:
|
|
|
496
505
|
:param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
497
506
|
:param pulumi.Input[str] subsystem: The subsystem name for Coralogix.
|
|
498
507
|
:param pulumi.Input[str] table: The table name for Azure monitor.
|
|
499
|
-
:param pulumi.Input[str] tags:
|
|
508
|
+
:param pulumi.Input[str] tags: Tags. e.g. `env=prod,region=europe`.
|
|
509
|
+
|
|
510
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
500
511
|
:param pulumi.Input[str] tenant_id: The tenant identifier for Azure monitor.
|
|
501
512
|
:param pulumi.Input[str] token: Token used for authentication.
|
|
502
513
|
:param pulumi.Input[str] url: Endpoint to log integration.
|
|
@@ -825,7 +836,9 @@ class _IntegrationLogState:
|
|
|
825
836
|
@pulumi.getter
|
|
826
837
|
def tags(self) -> Optional[pulumi.Input[str]]:
|
|
827
838
|
"""
|
|
828
|
-
|
|
839
|
+
Tags. e.g. `env=prod,region=europe`.
|
|
840
|
+
|
|
841
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
829
842
|
"""
|
|
830
843
|
return pulumi.get(self, "tags")
|
|
831
844
|
|
|
@@ -908,30 +921,215 @@ class IntegrationLog(pulumi.CustomResource):
|
|
|
908
921
|
|
|
909
922
|
Only available for dedicated subscription plans.
|
|
910
923
|
|
|
911
|
-
##
|
|
924
|
+
## Example Usage
|
|
925
|
+
|
|
926
|
+
<details>
|
|
927
|
+
<summary>
|
|
928
|
+
<b>
|
|
929
|
+
<i>Azure monitor log integration</i>
|
|
930
|
+
</b>
|
|
931
|
+
</summary>
|
|
932
|
+
|
|
933
|
+
```python
|
|
934
|
+
import pulumi
|
|
935
|
+
import pulumi_cloudamqp as cloudamqp
|
|
936
|
+
|
|
937
|
+
azure_monitor = cloudamqp.IntegrationLog("azure_monitor",
|
|
938
|
+
instance_id=instance["id"],
|
|
939
|
+
name="azure_monitor",
|
|
940
|
+
tenant_id=azm_tentant_id,
|
|
941
|
+
application_id=azm_application_id,
|
|
942
|
+
application_secret=azm_application_secret,
|
|
943
|
+
dce_uri=azm_dce_uri,
|
|
944
|
+
table=azm_table,
|
|
945
|
+
dcr_id=azm_dcr_id)
|
|
946
|
+
```
|
|
947
|
+
|
|
948
|
+
</details>
|
|
949
|
+
|
|
950
|
+
<details>
|
|
951
|
+
<summary>
|
|
952
|
+
<b>
|
|
953
|
+
<i>Cloudwatch log integration</i>
|
|
954
|
+
</b>
|
|
955
|
+
</summary>
|
|
956
|
+
|
|
957
|
+
```python
|
|
958
|
+
import pulumi
|
|
959
|
+
import pulumi_cloudamqp as cloudamqp
|
|
960
|
+
|
|
961
|
+
cloudwatch = cloudamqp.IntegrationLog("cloudwatch",
|
|
962
|
+
instance_id=instance["id"],
|
|
963
|
+
name="cloudwatchlog",
|
|
964
|
+
access_key_id=aws_access_key_id,
|
|
965
|
+
secret_access_key=aws_secret_access_key,
|
|
966
|
+
region=aws_region)
|
|
967
|
+
```
|
|
968
|
+
|
|
969
|
+
</details>
|
|
970
|
+
|
|
971
|
+
<details>
|
|
972
|
+
<summary>
|
|
973
|
+
<b>
|
|
974
|
+
<i>Coralogix log integration</i>
|
|
975
|
+
</b>
|
|
976
|
+
</summary>
|
|
977
|
+
|
|
978
|
+
```python
|
|
979
|
+
import pulumi
|
|
980
|
+
import pulumi_cloudamqp as cloudamqp
|
|
981
|
+
|
|
982
|
+
coralogix = cloudamqp.IntegrationLog("coralogix",
|
|
983
|
+
instance_id=instance["id"],
|
|
984
|
+
name="coralogix",
|
|
985
|
+
private_key=coralogix_send_data_key,
|
|
986
|
+
endpoint=coralogix_endpoint,
|
|
987
|
+
application=coralogix_application,
|
|
988
|
+
subsystem=instance["host"])
|
|
989
|
+
```
|
|
990
|
+
|
|
991
|
+
</details>
|
|
992
|
+
|
|
993
|
+
<details>
|
|
994
|
+
<summary>
|
|
995
|
+
<b>
|
|
996
|
+
<i>Datadog log integration</i>
|
|
997
|
+
</b>
|
|
998
|
+
</summary>
|
|
999
|
+
|
|
1000
|
+
```python
|
|
1001
|
+
import pulumi
|
|
1002
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1003
|
+
|
|
1004
|
+
datadog = cloudamqp.IntegrationLog("datadog",
|
|
1005
|
+
instance_id=instance["id"],
|
|
1006
|
+
name="datadog",
|
|
1007
|
+
region=datadog_region,
|
|
1008
|
+
api_key=datadog_api_key,
|
|
1009
|
+
tags="env=prod,region=us1,version=v1.0")
|
|
1010
|
+
```
|
|
1011
|
+
|
|
1012
|
+
</details>
|
|
912
1013
|
|
|
913
|
-
|
|
1014
|
+
<details>
|
|
1015
|
+
<summary>
|
|
1016
|
+
<b>
|
|
1017
|
+
<i>Logentries log integration</i>
|
|
1018
|
+
</b>
|
|
1019
|
+
</summary>
|
|
914
1020
|
|
|
915
|
-
|
|
1021
|
+
```python
|
|
1022
|
+
import pulumi
|
|
1023
|
+
import pulumi_cloudamqp as cloudamqp
|
|
916
1024
|
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
| Loggly | loggly | token |
|
|
925
|
-
| Papertrail | papertrail | url |
|
|
926
|
-
| Scalyr | scalyr | token, host |
|
|
927
|
-
| Splunk | splunk | token, host_port, sourcetype |
|
|
928
|
-
| Stackdriver | stackdriver | credentials |
|
|
1025
|
+
logentries = cloudamqp.IntegrationLog("logentries",
|
|
1026
|
+
instance_id=instance["id"],
|
|
1027
|
+
name="logentries",
|
|
1028
|
+
token=logentries_token)
|
|
1029
|
+
```
|
|
1030
|
+
|
|
1031
|
+
</details>
|
|
929
1032
|
|
|
930
|
-
|
|
1033
|
+
<details>
|
|
1034
|
+
<summary>
|
|
1035
|
+
<b>
|
|
1036
|
+
<i>Loggly log integration</i>
|
|
1037
|
+
</b>
|
|
1038
|
+
</summary>
|
|
931
1039
|
|
|
932
|
-
|
|
1040
|
+
```python
|
|
1041
|
+
import pulumi
|
|
1042
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1043
|
+
|
|
1044
|
+
loggly = cloudamqp.IntegrationLog("loggly",
|
|
1045
|
+
instance_id=instance["id"],
|
|
1046
|
+
name="loggly",
|
|
1047
|
+
token=loggly_token)
|
|
1048
|
+
```
|
|
1049
|
+
</details>
|
|
1050
|
+
|
|
1051
|
+
<details>
|
|
1052
|
+
<summary>
|
|
1053
|
+
<b>
|
|
1054
|
+
<i>Papertrail log integration</i>
|
|
1055
|
+
</b>
|
|
1056
|
+
</summary>
|
|
1057
|
+
|
|
1058
|
+
```python
|
|
1059
|
+
import pulumi
|
|
1060
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1061
|
+
|
|
1062
|
+
papertrail = cloudamqp.IntegrationLog("papertrail",
|
|
1063
|
+
instance_id=instance["id"],
|
|
1064
|
+
name="papertrail",
|
|
1065
|
+
url=papertrail_url)
|
|
1066
|
+
```
|
|
1067
|
+
|
|
1068
|
+
</details>
|
|
1069
|
+
|
|
1070
|
+
<details>
|
|
1071
|
+
<summary>
|
|
1072
|
+
<b>
|
|
1073
|
+
<i>Scalyr log integration</i>
|
|
1074
|
+
</b>
|
|
1075
|
+
</summary>
|
|
1076
|
+
|
|
1077
|
+
```python
|
|
1078
|
+
import pulumi
|
|
1079
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1080
|
+
|
|
1081
|
+
scalyr = cloudamqp.IntegrationLog("scalyr",
|
|
1082
|
+
instance_id=instance["id"],
|
|
1083
|
+
name="scalyr",
|
|
1084
|
+
token=scalyr_token,
|
|
1085
|
+
host=scalyr_host)
|
|
1086
|
+
```
|
|
1087
|
+
|
|
1088
|
+
<details>
|
|
1089
|
+
<summary>
|
|
1090
|
+
<b>
|
|
1091
|
+
<i>Splunk log integration</i>
|
|
1092
|
+
</b>
|
|
1093
|
+
</summary>
|
|
1094
|
+
|
|
1095
|
+
```python
|
|
1096
|
+
import pulumi
|
|
1097
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1098
|
+
|
|
1099
|
+
splunk = cloudamqp.IntegrationLog("splunk",
|
|
1100
|
+
instance_id=instance["id"],
|
|
1101
|
+
name="splunk",
|
|
1102
|
+
token=splunk_token,
|
|
1103
|
+
host_port=splunk_host_port,
|
|
1104
|
+
source_type="generic_single_line")
|
|
1105
|
+
```
|
|
1106
|
+
|
|
1107
|
+
</details>
|
|
1108
|
+
|
|
1109
|
+
</details>
|
|
1110
|
+
|
|
1111
|
+
<details>
|
|
1112
|
+
<summary>
|
|
1113
|
+
<b>
|
|
1114
|
+
<i>Stackdriver log integration (v1.20.2 or older versions)</i>
|
|
1115
|
+
</b>
|
|
1116
|
+
</summary>
|
|
1117
|
+
|
|
1118
|
+
Use variable file populated with project_id, private_key and client_email
|
|
1119
|
+
|
|
1120
|
+
```python
|
|
1121
|
+
import pulumi
|
|
1122
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1123
|
+
|
|
1124
|
+
stackdriver = cloudamqp.IntegrationLog("stackdriver",
|
|
1125
|
+
instance_id=instance["id"],
|
|
1126
|
+
name="stackdriver",
|
|
1127
|
+
project_id=stackdriver_project_id,
|
|
1128
|
+
private_key=stackdriver_private_key,
|
|
1129
|
+
client_email=stackdriver_client_email)
|
|
1130
|
+
```
|
|
933
1131
|
|
|
934
|
-
|
|
1132
|
+
or by using google_service_account_key resource from Google provider
|
|
935
1133
|
|
|
936
1134
|
## Import
|
|
937
1135
|
|
|
@@ -968,7 +1166,9 @@ class IntegrationLog(pulumi.CustomResource):
|
|
|
968
1166
|
:param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
969
1167
|
:param pulumi.Input[str] subsystem: The subsystem name for Coralogix.
|
|
970
1168
|
:param pulumi.Input[str] table: The table name for Azure monitor.
|
|
971
|
-
:param pulumi.Input[str] tags:
|
|
1169
|
+
:param pulumi.Input[str] tags: Tags. e.g. `env=prod,region=europe`.
|
|
1170
|
+
|
|
1171
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
972
1172
|
:param pulumi.Input[str] tenant_id: The tenant identifier for Azure monitor.
|
|
973
1173
|
:param pulumi.Input[str] token: Token used for authentication.
|
|
974
1174
|
:param pulumi.Input[str] url: Endpoint to log integration.
|
|
@@ -985,30 +1185,215 @@ class IntegrationLog(pulumi.CustomResource):
|
|
|
985
1185
|
|
|
986
1186
|
Only available for dedicated subscription plans.
|
|
987
1187
|
|
|
988
|
-
##
|
|
1188
|
+
## Example Usage
|
|
1189
|
+
|
|
1190
|
+
<details>
|
|
1191
|
+
<summary>
|
|
1192
|
+
<b>
|
|
1193
|
+
<i>Azure monitor log integration</i>
|
|
1194
|
+
</b>
|
|
1195
|
+
</summary>
|
|
1196
|
+
|
|
1197
|
+
```python
|
|
1198
|
+
import pulumi
|
|
1199
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1200
|
+
|
|
1201
|
+
azure_monitor = cloudamqp.IntegrationLog("azure_monitor",
|
|
1202
|
+
instance_id=instance["id"],
|
|
1203
|
+
name="azure_monitor",
|
|
1204
|
+
tenant_id=azm_tentant_id,
|
|
1205
|
+
application_id=azm_application_id,
|
|
1206
|
+
application_secret=azm_application_secret,
|
|
1207
|
+
dce_uri=azm_dce_uri,
|
|
1208
|
+
table=azm_table,
|
|
1209
|
+
dcr_id=azm_dcr_id)
|
|
1210
|
+
```
|
|
1211
|
+
|
|
1212
|
+
</details>
|
|
1213
|
+
|
|
1214
|
+
<details>
|
|
1215
|
+
<summary>
|
|
1216
|
+
<b>
|
|
1217
|
+
<i>Cloudwatch log integration</i>
|
|
1218
|
+
</b>
|
|
1219
|
+
</summary>
|
|
1220
|
+
|
|
1221
|
+
```python
|
|
1222
|
+
import pulumi
|
|
1223
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1224
|
+
|
|
1225
|
+
cloudwatch = cloudamqp.IntegrationLog("cloudwatch",
|
|
1226
|
+
instance_id=instance["id"],
|
|
1227
|
+
name="cloudwatchlog",
|
|
1228
|
+
access_key_id=aws_access_key_id,
|
|
1229
|
+
secret_access_key=aws_secret_access_key,
|
|
1230
|
+
region=aws_region)
|
|
1231
|
+
```
|
|
1232
|
+
|
|
1233
|
+
</details>
|
|
1234
|
+
|
|
1235
|
+
<details>
|
|
1236
|
+
<summary>
|
|
1237
|
+
<b>
|
|
1238
|
+
<i>Coralogix log integration</i>
|
|
1239
|
+
</b>
|
|
1240
|
+
</summary>
|
|
1241
|
+
|
|
1242
|
+
```python
|
|
1243
|
+
import pulumi
|
|
1244
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1245
|
+
|
|
1246
|
+
coralogix = cloudamqp.IntegrationLog("coralogix",
|
|
1247
|
+
instance_id=instance["id"],
|
|
1248
|
+
name="coralogix",
|
|
1249
|
+
private_key=coralogix_send_data_key,
|
|
1250
|
+
endpoint=coralogix_endpoint,
|
|
1251
|
+
application=coralogix_application,
|
|
1252
|
+
subsystem=instance["host"])
|
|
1253
|
+
```
|
|
1254
|
+
|
|
1255
|
+
</details>
|
|
1256
|
+
|
|
1257
|
+
<details>
|
|
1258
|
+
<summary>
|
|
1259
|
+
<b>
|
|
1260
|
+
<i>Datadog log integration</i>
|
|
1261
|
+
</b>
|
|
1262
|
+
</summary>
|
|
1263
|
+
|
|
1264
|
+
```python
|
|
1265
|
+
import pulumi
|
|
1266
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1267
|
+
|
|
1268
|
+
datadog = cloudamqp.IntegrationLog("datadog",
|
|
1269
|
+
instance_id=instance["id"],
|
|
1270
|
+
name="datadog",
|
|
1271
|
+
region=datadog_region,
|
|
1272
|
+
api_key=datadog_api_key,
|
|
1273
|
+
tags="env=prod,region=us1,version=v1.0")
|
|
1274
|
+
```
|
|
1275
|
+
|
|
1276
|
+
</details>
|
|
1277
|
+
|
|
1278
|
+
<details>
|
|
1279
|
+
<summary>
|
|
1280
|
+
<b>
|
|
1281
|
+
<i>Logentries log integration</i>
|
|
1282
|
+
</b>
|
|
1283
|
+
</summary>
|
|
1284
|
+
|
|
1285
|
+
```python
|
|
1286
|
+
import pulumi
|
|
1287
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1288
|
+
|
|
1289
|
+
logentries = cloudamqp.IntegrationLog("logentries",
|
|
1290
|
+
instance_id=instance["id"],
|
|
1291
|
+
name="logentries",
|
|
1292
|
+
token=logentries_token)
|
|
1293
|
+
```
|
|
1294
|
+
|
|
1295
|
+
</details>
|
|
1296
|
+
|
|
1297
|
+
<details>
|
|
1298
|
+
<summary>
|
|
1299
|
+
<b>
|
|
1300
|
+
<i>Loggly log integration</i>
|
|
1301
|
+
</b>
|
|
1302
|
+
</summary>
|
|
989
1303
|
|
|
990
|
-
|
|
1304
|
+
```python
|
|
1305
|
+
import pulumi
|
|
1306
|
+
import pulumi_cloudamqp as cloudamqp
|
|
991
1307
|
|
|
992
|
-
|
|
1308
|
+
loggly = cloudamqp.IntegrationLog("loggly",
|
|
1309
|
+
instance_id=instance["id"],
|
|
1310
|
+
name="loggly",
|
|
1311
|
+
token=loggly_token)
|
|
1312
|
+
```
|
|
1313
|
+
</details>
|
|
1314
|
+
|
|
1315
|
+
<details>
|
|
1316
|
+
<summary>
|
|
1317
|
+
<b>
|
|
1318
|
+
<i>Papertrail log integration</i>
|
|
1319
|
+
</b>
|
|
1320
|
+
</summary>
|
|
1321
|
+
|
|
1322
|
+
```python
|
|
1323
|
+
import pulumi
|
|
1324
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1325
|
+
|
|
1326
|
+
papertrail = cloudamqp.IntegrationLog("papertrail",
|
|
1327
|
+
instance_id=instance["id"],
|
|
1328
|
+
name="papertrail",
|
|
1329
|
+
url=papertrail_url)
|
|
1330
|
+
```
|
|
1331
|
+
|
|
1332
|
+
</details>
|
|
1333
|
+
|
|
1334
|
+
<details>
|
|
1335
|
+
<summary>
|
|
1336
|
+
<b>
|
|
1337
|
+
<i>Scalyr log integration</i>
|
|
1338
|
+
</b>
|
|
1339
|
+
</summary>
|
|
993
1340
|
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1341
|
+
```python
|
|
1342
|
+
import pulumi
|
|
1343
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1344
|
+
|
|
1345
|
+
scalyr = cloudamqp.IntegrationLog("scalyr",
|
|
1346
|
+
instance_id=instance["id"],
|
|
1347
|
+
name="scalyr",
|
|
1348
|
+
token=scalyr_token,
|
|
1349
|
+
host=scalyr_host)
|
|
1350
|
+
```
|
|
1351
|
+
|
|
1352
|
+
<details>
|
|
1353
|
+
<summary>
|
|
1354
|
+
<b>
|
|
1355
|
+
<i>Splunk log integration</i>
|
|
1356
|
+
</b>
|
|
1357
|
+
</summary>
|
|
1358
|
+
|
|
1359
|
+
```python
|
|
1360
|
+
import pulumi
|
|
1361
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1362
|
+
|
|
1363
|
+
splunk = cloudamqp.IntegrationLog("splunk",
|
|
1364
|
+
instance_id=instance["id"],
|
|
1365
|
+
name="splunk",
|
|
1366
|
+
token=splunk_token,
|
|
1367
|
+
host_port=splunk_host_port,
|
|
1368
|
+
source_type="generic_single_line")
|
|
1369
|
+
```
|
|
1006
1370
|
|
|
1007
|
-
|
|
1371
|
+
</details>
|
|
1008
1372
|
|
|
1009
|
-
|
|
1373
|
+
</details>
|
|
1010
1374
|
|
|
1011
|
-
|
|
1375
|
+
<details>
|
|
1376
|
+
<summary>
|
|
1377
|
+
<b>
|
|
1378
|
+
<i>Stackdriver log integration (v1.20.2 or older versions)</i>
|
|
1379
|
+
</b>
|
|
1380
|
+
</summary>
|
|
1381
|
+
|
|
1382
|
+
Use variable file populated with project_id, private_key and client_email
|
|
1383
|
+
|
|
1384
|
+
```python
|
|
1385
|
+
import pulumi
|
|
1386
|
+
import pulumi_cloudamqp as cloudamqp
|
|
1387
|
+
|
|
1388
|
+
stackdriver = cloudamqp.IntegrationLog("stackdriver",
|
|
1389
|
+
instance_id=instance["id"],
|
|
1390
|
+
name="stackdriver",
|
|
1391
|
+
project_id=stackdriver_project_id,
|
|
1392
|
+
private_key=stackdriver_private_key,
|
|
1393
|
+
client_email=stackdriver_client_email)
|
|
1394
|
+
```
|
|
1395
|
+
|
|
1396
|
+
or by using google_service_account_key resource from Google provider
|
|
1012
1397
|
|
|
1013
1398
|
## Import
|
|
1014
1399
|
|
|
@@ -1166,7 +1551,9 @@ class IntegrationLog(pulumi.CustomResource):
|
|
|
1166
1551
|
:param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
|
|
1167
1552
|
:param pulumi.Input[str] subsystem: The subsystem name for Coralogix.
|
|
1168
1553
|
:param pulumi.Input[str] table: The table name for Azure monitor.
|
|
1169
|
-
:param pulumi.Input[str] tags:
|
|
1554
|
+
:param pulumi.Input[str] tags: Tags. e.g. `env=prod,region=europe`.
|
|
1555
|
+
|
|
1556
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
1170
1557
|
:param pulumi.Input[str] tenant_id: The tenant identifier for Azure monitor.
|
|
1171
1558
|
:param pulumi.Input[str] token: Token used for authentication.
|
|
1172
1559
|
:param pulumi.Input[str] url: Endpoint to log integration.
|
|
@@ -1386,7 +1773,9 @@ class IntegrationLog(pulumi.CustomResource):
|
|
|
1386
1773
|
@pulumi.getter
|
|
1387
1774
|
def tags(self) -> pulumi.Output[Optional[str]]:
|
|
1388
1775
|
"""
|
|
1389
|
-
|
|
1776
|
+
Tags. e.g. `env=prod,region=europe`.
|
|
1777
|
+
|
|
1778
|
+
***Note: If tags are used with Datadog. The value part (prod, europe, ...) must start with a letter, read more about tags format in the [Datadog documentation](https://docs.datadoghq.com/getting_started/tagging/#define-tags)***
|
|
1390
1779
|
"""
|
|
1391
1780
|
return pulumi.get(self, "tags")
|
|
1392
1781
|
|