-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Promote route53 module_utils #1066
Merged
softwarefactory-project-zuul
merged 7 commits into
ansible-collections:main
from
alinabuzachis:promote_route53_utils
Sep 26, 2022
Merged
Promote route53 module_utils #1066
softwarefactory-project-zuul
merged 7 commits into
ansible-collections:main
from
alinabuzachis:promote_route53_utils
Sep 26, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@8c20df0
This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@55fc45f
This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@26bebba
route53_health_check - add tagging support SUMMARY add tagging support to route53_health_check ISSUE TYPE Feature Pull Request COMPONENT NAME route53_health_check ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis <None> Reviewed-by: None <None> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@3248016
Signed-off-by: Alina Buzachis <[email protected]>
tremble
approved these changes
Sep 26, 2022
This was referenced Sep 26, 2022
Signed-off-by: Alina Buzachis <[email protected]>
ansibullbot
added
bug
This issue/PR relates to a bug
community_review
module
module
module_utils
module_utils
needs_triage
new_plugin
New plugin
plugins
plugin (any type)
labels
Sep 26, 2022
recheck |
This was referenced Sep 26, 2022
recheck |
Build succeeded (gate pipeline). ✔️ ansible-galaxy-importer SUCCESS in 4m 01s |
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Sep 27, 2022
Add route53 sanity ignore entry for 2.15 (devel) Depends-On: #1066 SUMMARY SSIA ISSUE TYPE Feature Pull Request COMPONENT NAME tests/sanity ADDITIONAL INFORMATION Reviewed-by: Alina Buzachis <None>
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Sep 27, 2022
doc: Fix readme typo and misc Depends-On: #1066 SUMMARY Fix pip install command typo and formal name of FQCN. ISSUE TYPE Docs Pull Request COMPONENT NAME README.md ADDITIONAL INFORMATION n/a Reviewed-by: Mark Chappell <None>
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Sep 27, 2022
[PR #1065/9705493a backport][stable-4] doc: Fix readme typo and misc This is a backport of PR #1065 as merged into main (9705493). Depends-On: #1066 SUMMARY Fix pip install command typo and formal name of FQCN. ISSUE TYPE Docs Pull Request COMPONENT NAME README.md ADDITIONAL INFORMATION n/a Reviewed-by: Mark Chappell <None>
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Sep 27, 2022
new module: cloudwatch_metric_alarm_info SUMMARY Depends-On: #1066 Should be merged only after #1028 is merged. Adding a new module for retrieving cloudwatch metric alarms info. Currently supports following boto API(s) describe_alarms() ISSUE TYPE New Module Pull Request COMPONENT NAME cloudwatch_metric_alarm_info ADDITIONAL INFORMATION Will be useful in moving these tasks from aws cli commands to amazon.aws module. https://github.com/ansible-collections/community.aws/blob/main/tests/integration/targets/cloudwatch_metric_alarm/tasks/main.yml#L63-L70 ansible-collections/community.aws#1440 The integration tests for this info module will be added to above tests, after the cloudwatch_metric_alarm module is migrated from community.aws to amazon.aws. Sample playbook --- - name: Create a metric alarm & get info hosts: localhost gather_facts: false tasks: - name: create alarm community.aws.cloudwatch_metric_alarm: state: present region: us-east-2 name: "cpu-low-test-metric-alarm-1234" metric: "CPUUtilization" namespace: "AWS/EC2" statistic: Average comparison: "LessThanOrEqualToThreshold" threshold: 50.0 period: 180 evaluation_periods: 3 unit: "Percent" description: "This will alarm when a instance's CPU usage average is lower than 50%" dimensions: {'InstanceId':'i-00a8b34xxxxxxxxxx'} - name: describe the metric alarm based on metric name and namespace amazon.aws.cloudwatch_metric_alarm_info: alarm_names: - cpu-low-test-metric-alarm-1234 register: alarm_info - debug: var: alarm_info Reviewed-by: Alina Buzachis <None> Reviewed-by: Mandar Kulkarni <[email protected]> Reviewed-by: Jill R <None> Reviewed-by: Mark Chappell <None> Reviewed-by: Gonéri Le Bouder <[email protected]>
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Sep 29, 2022
inventory/aws_ec2: allow multi-entries for one host Depends-On: #1066 Add an option to allow multiple duplicated entries for one single instance. Closes: #950 Reviewed-by: Alina Buzachis <None> Reviewed-by: Jill R <None> Reviewed-by: Gonéri Le Bouder <[email protected]> Reviewed-by: Markus Bergholz <[email protected]>
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Oct 12, 2022
ec2_ami: Add support for params BootMode, TpmSupport, UefiData SUMMARY Depends-On: #1066 Added support for params BootMode, TpmSupport, UefiData in ec2_ami. Fixes #944 ISSUE TYPE Feature Pull Request COMPONENT NAME ec2_ami ADDITIONAL INFORMATION Example playbook - name: abc hosts: localhost gather_facts: false tasks: - name: AMI Creation with boot_mode and tpm_support amazon.aws.ec2_ami: name: ami-create-test_legacy-bios state: present architecture: x86_64 virtualization_type: hvm root_device_name: /dev/sda1 device_mapping: - device_name: /dev/sda1 snapshot_id: snap-xxxxxxxxx wait: yes region: us-east-2 boot_mode: legacy-bios tpm_support: v2.0 tags: name: ami-create-test Reviewed-by: Gonéri Le Bouder <[email protected]> Reviewed-by: Mandar Kulkarni <[email protected]> Reviewed-by: Mike Graves <[email protected]>
alinabuzachis
pushed a commit
to alinabuzachis/amazon.aws
that referenced
this pull request
Apr 27, 2023
…le-collections#1037) ec2_ami: Add support for params BootMode, TpmSupport, UefiData SUMMARY Depends-On: ansible-collections#1066 Added support for params BootMode, TpmSupport, UefiData in ec2_ami. Fixes ansible-collections#944 ISSUE TYPE Feature Pull Request COMPONENT NAME ec2_ami ADDITIONAL INFORMATION Example playbook - name: abc hosts: localhost gather_facts: false tasks: - name: AMI Creation with boot_mode and tpm_support amazon.aws.ec2_ami: name: ami-create-test_legacy-bios state: present architecture: x86_64 virtualization_type: hvm root_device_name: /dev/sda1 device_mapping: - device_name: /dev/sda1 snapshot_id: snap-xxxxxxxxx wait: yes region: us-east-2 boot_mode: legacy-bios tpm_support: v2.0 tags: name: ami-create-test Reviewed-by: Gonéri Le Bouder <[email protected]> Reviewed-by: Mandar Kulkarni <[email protected]> Reviewed-by: Mike Graves <[email protected]>
softwarefactory-project-zuul bot
pushed a commit
that referenced
this pull request
Apr 28, 2023
#1487) [manual backport stable-5] ec2_ami: Add support for params BootMode, TpmSupport, UefiData (#1037) ec2_ami: Add support for params BootMode, TpmSupport, UefiData SUMMARY Depends-On: #1066 Added support for params BootMode, TpmSupport, UefiData in ec2_ami. Fixes #944 ISSUE TYPE Feature Pull Request COMPONENT NAME ec2_ami ADDITIONAL INFORMATION Example playbook name: abc hosts: localhost gather_facts: false tasks: - name: AMI Creation with boot_mode and tpm_support amazon.aws.ec2_ami: name: ami-create-test_legacy-bios state: present architecture: x86_64 virtualization_type: hvm root_device_name: /dev/sda1 device_mapping: - device_name: /dev/sda1 snapshot_id: snap-xxxxxxxxx wait: yes region: us-east-2 boot_mode: legacy-bios tpm_support: v2.0 tags: name: ami-create-test Reviewed-by: Gonéri Le Bouder [email protected] Reviewed-by: Mandar Kulkarni [email protected] Reviewed-by: Mike Graves [email protected] SUMMARY ISSUE TYPE Bugfix Pull Request Docs Pull Request Feature Pull Request New Module Pull Request COMPONENT NAME ADDITIONAL INFORMATION
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
This issue/PR relates to a bug
community_review
integration
tests/integration
mergeit
Merge the PR (SoftwareFactory)
module_utils
module_utils
module
module
new_plugin
New plugin
plugins
plugin (any type)
tests
tests
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
SUMMARY
Promote route53 module_utils
ISSUE TYPE
COMPONENT NAME
ADDITIONAL INFORMATION