Skip to content

Commit

Permalink
Add more details to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
GomathiselviS committed Sep 12, 2023
1 parent 7ff0f79 commit 7532ad9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
18 changes: 17 additions & 1 deletion changelogs/fragments/add_deploy_flask_app_role.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
---
breaking_changes:
- "Rename the vars in webapp playbook with role name prefix (https://github.com/redhat-cop/cloud.aws_ops/pull/85)."
- "Rename the vars in webapp playbook with role name prefix (https://github.com/redhat-cop/cloud.aws_ops/pull/85).
'sshkey_pair_name' changed to 'deploy_flask_app_sshkey_pair_name'
'bastion_host_name' changed to 'deploy_flask_app_bastion_host_name'
'bastion_host_username' changed to 'deploy_flask_app_bastion_host_username'
'bastion_host_required_packages' changed to 'deploy_flask_app_bastion_host_required_packages'
'app_listening_port' changed to 'deploy_flask_app_listening_port'
'rds_master_user' changed to 'deploy_flask_app_rds_master_username'
'rds_master_password' changed to 'deploy_flask_app_rds_master_password'
'app_git_repository' changed to 'deploy_flask_app_git_repository'
'number_of_workers' changed to 'deploy_flask_app_number_of_workers'
'workers_instance_type' changed to 'deploy_flask_app_workers_instance_type'
'local_registry_user' changed to 'deploy_flask_app_local_registry_user'
'local_registry_pwd' changed to 'deploy_flask_app_local_registry_pwd'
'local_registry_port' changed to 'deploy_flask_app_local_registry_port'
'app_config' changed to 'deploy_flask_app_config'
'app_force_init' changed to 'deploy_flask_app_force_init'
"
minor_changes:
- "Convert deploy_flask_app playbook to role (https://github.com/redhat-cop/cloud.aws_ops/pull/85)."
4 changes: 2 additions & 2 deletions playbooks/webapp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ To delete the webapp:
### EC2 instance

* **image_filter** (str): Name of AWS AMI to use. Default: `Fedora-Cloud-Base-35-*`
* **deploy_sshkey_pair_name** (str): Name for the EC2 key pair. Default: `"{{ resource_prefix }}-key"`
* **deploy_bastion_host_name** (str): Name for the EC2 instance. Default: `"{{ resource_prefix }}-bastion"`
* **deploy_flask_app_sshkey_pair_name** (str): Name for the EC2 key pair. Default: `"{{ resource_prefix }}-key"`
* **deploy_flask_app_bastion_host_name** (str): Name for the EC2 instance. Default: `"{{ resource_prefix }}-bastion"`
* **bastion_host_type** (str): Instance type for the EC2 instance. Default: `t2.xlarge`
* **deploy_flask_app_bastion_host_username** (str): Username for the bastion host SSH user. Default: `fedora`
* **deploy_flask_app_bastion_host_required_packages** (list, elements str): Packages to be installed on the bastion host. Default:
Expand Down
1 change: 0 additions & 1 deletion playbooks/webapp/tasks/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

- name: List availability zones from aws region
amazon.aws.aws_az_info:
region: "{{ region }}"
register: zones

- name: Set region_av_zones' variable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

- name: List availability zones from aws region
amazon.aws.aws_az_info:
region: "{{ region }}"
register: zones

- name: Set region_av_zones' variable
Expand Down

0 comments on commit 7532ad9

Please sign in to comment.