1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWS ALBリスナールール変更

Posted at

リスナールールでターゲットグループを重み付け指定するコマンド

aws elbv2 modify-rule \
--rule-arn "<arn:ListenerRule>" \
--actions \
'[{
   "Type": "forward",
   "Order": 1,
   "ForwardConfig": {
    "TargetGroups": [
       { "Weight": 1, "TargetGroupArn": "<arn:TargetGroup>" },
       { "Weight": 0, "TargetGroupArn": "<arn:TargetGroup>" }
     ]
   }
}]'

aws:modify-rule

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?