-
Notifications
You must be signed in to change notification settings - Fork 0
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
[CES-582] Add info
endpoint on Azure Function
#20
Merged
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
🦋 Changeset detectedLatest commit: 0baa148 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
kin0992
changed the title
[CES-582] Create OpenAPI
[CES-582] Expose Dec 11, 2024
info
endpoint on Azure Function
kin0992
changed the title
[CES-582] Expose
[CES-582] Add Dec 11, 2024
info
endpoint on Azure Functioninfo
endpoint on Azure Function
kin0992
commented
Dec 11, 2024
kin0992
force-pushed
the
features/create-api-azure-function
branch
from
December 11, 2024 16:22
b9f331e
to
7cc5acf
Compare
kin0992
force-pushed
the
features/create-api-azure-function
branch
from
December 12, 2024 10:04
c0a1b08
to
e59e2ae
Compare
kin0992
commented
Dec 12, 2024
Krusty93
approved these changes
Dec 17, 2024
gunzip
reviewed
Dec 17, 2024
📖 Terraform Plan ('infra/resources/dev') - successTerraform PlanTerraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# module.app_service.azurerm_linux_web_app.this will be updated in-place
~ resource "azurerm_linux_web_app" "this" {
id = "/subscriptions/d7de83e0-0571-40ad-b63a-64c942385eae/resourceGroups/dx-d-itn-test-rg-01/providers/Microsoft.Web/sites/dx-d-itn-playground-fe-app-01"
name = "dx-d-itn-playground-fe-app-01"
tags = {
"CostCenter" = "TS700 - ENGINEERING"
"CreatedBy" = "Terraform"
"Environment" = "Dev"
"Owner" = "DevEx"
"Scope" = "Dynatrace PoC"
}
# (25 unchanged attributes hidden)
~ site_config {
~ health_check_path = "/health" -> "/info"
# (28 unchanged attributes hidden)
# (1 unchanged block hidden)
}
# (1 unchanged block hidden)
}
# module.function_app.azurerm_linux_function_app.this will be updated in-place
~ resource "azurerm_linux_function_app" "this" {
id = "/subscriptions/d7de83e0-0571-40ad-b63a-64c942385eae/resourceGroups/dx-d-itn-test-rg-01/providers/Microsoft.Web/sites/dx-d-itn-playground-be-func-01"
name = "dx-d-itn-playground-be-func-01"
tags = {
"CostCenter" = "TS700 - ENGINEERING"
"CreatedBy" = "Terraform"
"Environment" = "Dev"
"Owner" = "DevEx"
"Scope" = "Dynatrace PoC"
}
# (32 unchanged attributes hidden)
~ site_config {
~ health_check_path = "/health" -> "/info"
# (32 unchanged attributes hidden)
# (1 unchanged block hidden)
}
# (2 unchanged blocks hidden)
}
Plan: 0 to add, 2 to change, 0 to destroy.
─────────────────────────────────────────────────────────────────────────────
Note: You didn't use the -out option to save this plan, so Terraform can't
guarantee to take exactly these actions if you run "terraform apply" now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Configure the Azure Function and add the firs endpoint.
Once you run the application, go to the
/info
and the function responds.