-
Notifications
You must be signed in to change notification settings - Fork 5
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
[#IOCIT-182] add fn public #316
Conversation
src/core/99_variables.tf
Outdated
default = null | ||
} | ||
|
||
variable "plan_shared_sku_tier" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
variable "plan_shared_sku_tier" { | |
variable "plan_shared_1_sku_tier" { |
add 1 to respect naming convention, there are many others changes to do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
solved in 46bd324
src/core/99_variables.tf
Outdated
@@ -222,6 +222,11 @@ variable "cidr_subnet_cgn" { | |||
description = "Function cgn address space." | |||
} | |||
|
|||
variable "cidr_subnet_shared" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
variable "cidr_subnet_shared" { | |
variable "cidr_subnet_shared_1" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
solved in 46bd324
src/core/function_public.tf
Outdated
function_public = { | ||
app_settings_common = { | ||
FUNCTIONS_WORKER_RUNTIME = "node" | ||
WEBSITE_NODE_DEFAULT_VERSION = "14.16.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this can be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
try this
src/core/function_public.tf
Outdated
resource_group_name = azurerm_resource_group.shared_rg.name | ||
function_app_name = module.function_public.name | ||
function_app_id = module.function_public.id | ||
app_service_plan_id = azurerm_app_service_plan.shared_1_plan.id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
app_service_plan_id = azurerm_app_service_plan.shared_1_plan.id | |
app_service_plan_id = azurerm_app_service_plan.shared_1_plan.id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the difference?
List of changes
function_public
with azure functions runtime v4shared_plan_1
service planMotivation and context
porting from old infrastructure and various improvements
Type of changes
Env to apply
Does this introduce a change to production resources with possible user impact?
Does this introduce an unwanted change on infrastructure? Check terraform plan execution result
Other information
If PR is partially applied, why? (reserved to mantainers)
How to apply
After PR is approved