Infraestructura agregada #15
Merged
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.
This pull request introduces several infrastructure changes to set up and configure an Azure environment using Terraform. Key updates include the addition of backend configuration, provider setup, resource definitions, and variable declarations. The changes also update documentation to reflect the new infrastructure setup.
Infrastructure Setup
infra/backend.tf
to store the state file in an Azure Storage Account.infra/provider.tf
, specifying the provider version and subscription ID.Resource Definitions
infra/main.tf
to create a resource group, log analytics workspace, application insights, and a container app environment. These resources are interconnected using variables and references.Variable Declarations
infra/variables.tf
for resource group name prefix, location, Azure Container Registry (ACR) name, and container app environment name. Default values are provided for each variable.Documentation Update
docs/clase12.md
to reflect the new infrastructure setup, replacing the Azure Container Registry resource with Application Insights and updating the example code accordingly. [1] [2]