Skip to content

Commit

Permalink
Rename aws_elasticbeanstalk_app elasticbeanstalk_app (ansible-collect…
Browse files Browse the repository at this point in the history
…ions#1307)

Rename aws_elasticbeanstalk_app to elasticbeanstalk_app

SUMMARY
Drop the aws_ prefix from aws_elasticbeanstalk_app in line with the naming guidelines
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
plugins/modules/aws_elasticbeanstalk_app.py
plugins/modules/elasticbeanstalk_app.py
ADDITIONAL INFORMATION

Reviewed-by: Alina Buzachis <None>
  • Loading branch information
tremble authored and abikouo committed Sep 18, 2023
1 parent d86ef7b commit c14de9d
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions aws_elasticbeanstalk_app.py → elasticbeanstalk_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,18 @@

DOCUMENTATION = '''
---
module: aws_elasticbeanstalk_app
module: elasticbeanstalk_app
version_added: 1.0.0
short_description: Create, update, and delete an elastic beanstalk application
short_description: Create, update, and delete an Elastic Beanstalk application
description:
- Creates, updates, deletes beanstalk applications if app_name is provided.
- Creates, updates, deletes Elastic Beanstalk applications if I(app_name) is provided.
options:
app_name:
description:
- Name of the beanstalk application you wish to manage.
- Name of the Beanstalk application you wish to manage.
aliases: [ 'name' ]
type: str
description:
Expand All @@ -39,23 +38,22 @@
default: false
type: bool
author:
- Harpreet Singh (@hsingh)
- Stephen Granger (@viper233)
- Harpreet Singh (@hsingh)
- Stephen Granger (@viper233)
extends_documentation_fragment:
- amazon.aws.aws
- amazon.aws.ec2
- amazon.aws.aws
- amazon.aws.ec2
'''

EXAMPLES = '''
# Create or update an application
- community.aws.aws_elasticbeanstalk_app:
- community.aws.elasticbeanstalk_app:
app_name: Sample_App
description: "Hello World App"
state: present
# Delete application
- community.aws.aws_elasticbeanstalk_app:
- community.aws.elasticbeanstalk_app:
app_name: Sample_App
state: absent
Expand Down

0 comments on commit c14de9d

Please sign in to comment.