'Where can we see the .ebextensions resulted configurations using the aws elasticbeanstalk web console?

If configurations are made using the --option-settings using the cli:

aws elasticbeanstalk create-environment \
--cname-prefix my-cname \
--application-name my-app \
--template-name v1 \
--version-label v1 \
--environment-name v1clone \
--option-settings file://options.json

option.json

{
    "Namespace": "aws:autoscaling:asg",
    "OptionName": "MaxSize",
    "Value": "3"
},
{
    "Namespace": "aws:autoscaling:trigger",
    "OptionName": "MeasureName",
    "Value": "CPUUtilization"
},

After the environment creation We can see/edit the configurations using the aws web console:

aws web console

But I don't find the same feature for .ebextensions configurations.

Is there any way to at least view it using the aws web console?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source