Skip to content
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

Add a match status codes parameter to the probes section of Application Gateway #1460

Closed
pwakano opened this issue Feb 22, 2024 · 0 comments
Closed
Labels
enhancement New feature or request has_pr PR fixes have been made medium_priority Medium priority

Comments

@pwakano
Copy link

pwakano commented Feb 22, 2024

SUMMARY

On the application gateway module, include a match status codes parameter in the probes section to allow the configuration of a different status code to be considered as a match by the probing mechanism.

ISSUE TYPE
  • Feature Idea
COMPONENT NAME

azure_rm_appgateway_module

ADDITIONAL INFORMATION

Sometimes it is needed to change the probe's matching condition but currently the ansible module lacks this option forcing the default 200-399 value.
Azure portal and terraform allow this configuration.

- name: Create instance of Application Gateway with complex routing and redirect rules
  azure_rm_appgateway:
...
    probes:
      - name: "http-probe1"
        interval: 30
        path: "/abc"
        protocol: "https"
        pick_host_name_from_backend_http_settings: true
        timeout: 30
        unhealthy_threshold: 2
        match_status_code: 200 # ==> Proposed new parameter
...
@Fred-sun Fred-sun added enhancement New feature or request has_pr PR fixes have been made medium_priority Medium priority labels Feb 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request has_pr PR fixes have been made medium_priority Medium priority
Projects
None yet
Development

No branches or pull requests

2 participants