Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/modules/cdn_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def present(self):
)
self.module.exit_json(changed=False, endpoint=existing_cdn)
self.module.fail_json(
changed=False, msg=error.get("Message"), error=error, endpiont=[]
changed=False, msg=error.get("Message"), error=error, endpoint=[]
)

try:
Expand Down
2 changes: 2 additions & 0 deletions plugins/modules/certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,13 @@
MIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDE39Eyyp2QJIp6
IvXELS4L+Wa8dAM4Uk0enV3PJKm2a674Ys0WSle2dzsd1EfpRXMNTt+iPZCyZQIS
...
-----END PRIVATE KEY-----
leaf_certificate: |
-----BEGIN CERTIFICATE-----
MIIF8jCCA9oCCQDHvZvzJneVuzANBgkqhkiG9w0BAQsFADCBujELMAkGA1UEBhMC
VVMxETAPBgNVBAgMCE1pY2hpZ2FuMRQwEgYDVQQHDAtHcmFuZCBCbGFuYzETMBEG
...
-----END CERTIFICATE-----

- name: Create Let's Encrypt certificate
digitalocean.cloud.certificate:
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/monitoring_alert_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
required: true
compare:
description:
- Comparision.
- Comparison.
type: str
required: true
choices: ["GreaterThan", "LessThan"]
Expand Down Expand Up @@ -246,7 +246,7 @@ def create_monitoring_alert_policy(self):
body = {
"alerts": self.alerts,
"compare": self.compare,
"desciption": self.description,
"description": self.description,
"enabled": self.enabled,
"entities": self.entities,
"tags": self.tags,
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/volume_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
- Attached volume test-vol in nyc3 to test-droplet
- Volume test-vol in nyc3 not attached to test-droplet
- Detached volume test-vol in nyc3 from test-droplet
- Volume test-vol in nyc3 would be attahed to test-droplet
- Volume test-vol in nyc3 would be attached to test-droplet
- Volume test-vol in nyc3 would be detached from test-droplet
"""

Expand Down