From 995f8a781b71be37dcff648579c310f754d48577 Mon Sep 17 00:00:00 2001 From: Colin Gagnaire Date: Mon, 14 Oct 2019 15:40:31 +0200 Subject: [PATCH] add apigateway discovery type --- centreon-plugins/cloud/aws/apigateway/mode/discovery.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/centreon-plugins/cloud/aws/apigateway/mode/discovery.pm b/centreon-plugins/cloud/aws/apigateway/mode/discovery.pm index 0b8310bfc..25de1b09b 100644 --- a/centreon-plugins/cloud/aws/apigateway/mode/discovery.pm +++ b/centreon-plugins/cloud/aws/apigateway/mode/discovery.pm @@ -59,6 +59,7 @@ sub run { foreach my $api (@{$apis->{items}}) { my %api; + $api{type} = "apigateway"; $api{id} = $api->{id}; $api{name} = $api->{name}; $api{description} = $api->{description};