From d403f06e549f7bc8391bb33e866aba7b20369ae3 Mon Sep 17 00:00:00 2001 From: Mathieu MD Date: Fri, 5 Sep 2014 22:09:29 +0200 Subject: [PATCH] Remove namespace restrictions in ec2_metric_alarm Fixes #7970 --- cloud/ec2_metric_alarm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cloud/ec2_metric_alarm b/cloud/ec2_metric_alarm index a01453bb225..519f88f24f8 100644 --- a/cloud/ec2_metric_alarm +++ b/cloud/ec2_metric_alarm @@ -39,9 +39,8 @@ options: required: false namespace: description: - - Name of the appropriate namespace, which determines the category it will appear under in cloudwatch + - Name of the appropriate namespace ('AWS/EC2', 'System/Linux', etc.), which determines the category it will appear under in cloudwatch required: false - options: ['AWS/AutoScaling','AWS/Billing','AWS/DynamoDB','AWS/ElastiCache','AWS/EBS','AWS/EC2','AWS/ELB','AWS/ElasticMapReduce','AWS/OpsWorks','AWS/Redshift','AWS/RDS','AWS/Route53','AWS/SNS','AWS/SQS','AWS/StorageGateway'] statistic: description: - Operation applied to the metric @@ -248,8 +247,8 @@ def main(): dict( name=dict(required=True, type='str'), metric=dict(type='str'), - namespace=dict(type='str', choices=['AWS/AutoScaling', 'AWS/Billing', 'AWS/DynamoDB', 'AWS/ElastiCache', 'AWS/EBS', 'AWS/EC2', - 'AWS/ELB', 'AWS/ElasticMapReduce', 'AWS/OpsWorks', 'AWS/Redshift', 'AWS/RDS', 'AWS/Route53', 'AWS/SNS', 'AWS/SQS', 'AWS/StorageGateway']), statistic=dict(type='str', choices=['SampleCount', 'Average', 'Sum', 'Minimum', 'Maximum']), + namespace=dict(type='str'), + statistic=dict(type='str', choices=['SampleCount', 'Average', 'Sum', 'Minimum', 'Maximum']), comparison=dict(type='str', choices=['<=', '<', '>', '>=']), threshold=dict(type='float'), period=dict(type='int'),