Esempio n. 1
0
 public MyStack()
 {
     var example = new Aws.Sns.Topic("example", new Aws.Sns.TopicArgs
     {
     });
     var bar = new Aws.AutoScaling.Group("bar", new Aws.AutoScaling.GroupArgs
     {
     });
     var foo = new Aws.AutoScaling.Group("foo", new Aws.AutoScaling.GroupArgs
     {
     });
     var exampleNotifications = new Aws.AutoScaling.Notification("exampleNotifications", new Aws.AutoScaling.NotificationArgs
     {
         GroupNames =
         {
             bar.Name,
             foo.Name,
         },
         Notifications =
         {
             "autoscaling:EC2_INSTANCE_LAUNCH",
             "autoscaling:EC2_INSTANCE_TERMINATE",
             "autoscaling:EC2_INSTANCE_LAUNCH_ERROR",
             "autoscaling:EC2_INSTANCE_TERMINATE_ERROR",
         },
         TopicArn = example.Arn,
     });
 }
Esempio n. 2
0
 public MyStack()
 {
     var groups = Output.Create(Aws.GetAutoscalingGroups.InvokeAsync(new Aws.GetAutoscalingGroupsArgs
     {
         Filters =
         {
             new Aws.Inputs.GetAutoscalingGroupsFilterArgs
             {
                 Name   = "key",
                 Values =
                 {
                     "Team",
                 },
             },
             new Aws.Inputs.GetAutoscalingGroupsFilterArgs
             {
                 Name   = "value",
                 Values =
                 {
                     "Pets",
                 },
             },
         },
     }));
     var slackNotifications = new Aws.AutoScaling.Notification("slackNotifications", new Aws.AutoScaling.NotificationArgs
     {
         GroupNames    = groups.Apply(groups => groups.Names),
         Notifications =
         {
             "autoscaling:EC2_INSTANCE_LAUNCH",
             "autoscaling:EC2_INSTANCE_TERMINATE",
             "autoscaling:EC2_INSTANCE_LAUNCH_ERROR",
             "autoscaling:EC2_INSTANCE_TERMINATE_ERROR",
         },
         TopicArn = "TOPIC ARN",
     });
 }