Skip to content

Commit

Permalink
[EC-232] Remove all FIMS resources (#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
Krusty93 authored Mar 28, 2024
1 parent 6fa5bce commit 1b269d6
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 706 deletions.
5 changes: 0 additions & 5 deletions src/core/99_variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,6 @@ variable "cidr_subnet_fnfastlogin" {
description = "Function Fast Login address space."
}

variable "cidr_subnet_fims" {
type = list(string)
description = "FIMS app service address space."
}

## REDIS COMMON ##
variable "redis_common" {
type = object({
Expand Down
1 change: 0 additions & 1 deletion src/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,6 @@
| <a name="input_cidr_subnet_devportalservicedata_db_server"></a> [cidr\_subnet\_devportalservicedata\_db\_server](#input\_cidr\_subnet\_devportalservicedata\_db\_server) | Space address for DevPortal Service Data PostgresSQL | `list(string)` | n/a | yes |
| <a name="input_cidr_subnet_dnsforwarder"></a> [cidr\_subnet\_dnsforwarder](#input\_cidr\_subnet\_dnsforwarder) | DNS Forwarder network address space. | `list(string)` | n/a | yes |
| <a name="input_cidr_subnet_eventhub"></a> [cidr\_subnet\_eventhub](#input\_cidr\_subnet\_eventhub) | Eventhub network address space. | `list(string)` | n/a | yes |
| <a name="input_cidr_subnet_fims"></a> [cidr\_subnet\_fims](#input\_cidr\_subnet\_fims) | FIMS app service address space. | `list(string)` | n/a | yes |
| <a name="input_cidr_subnet_fnadmin"></a> [cidr\_subnet\_fnadmin](#input\_cidr\_subnet\_fnadmin) | Function Admin address space. | `list(string)` | n/a | yes |
| <a name="input_cidr_subnet_fncdnassets"></a> [cidr\_subnet\_fncdnassets](#input\_cidr\_subnet\_fncdnassets) | Fn assets address space. | `list(string)` | n/a | yes |
| <a name="input_cidr_subnet_fnelt"></a> [cidr\_subnet\_fnelt](#input\_cidr\_subnet\_fnelt) | function-elt network address space. | `list(string)` | n/a | yes |
Expand Down
1 change: 0 additions & 1 deletion src/core/env/prod/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ cidr_subnet_shared_1 = ["10.0.16.0/26"]
cidr_subnet_fnlollipop = ["10.0.17.0/26"]
cidr_subnet_continua = ["10.0.17.64/26"]
cidr_subnet_fnfastlogin = ["10.0.17.128/26"]
cidr_subnet_fims = ["10.0.18.0/26"]
cidr_subnet_apim = ["10.0.101.0/24"]
cidr_subnet_apim_v2 = ["10.0.100.0/24"]
cidr_subnet_fnmessagescqrs = ["10.0.129.0/24"]
Expand Down
285 changes: 0 additions & 285 deletions src/domains/citizen-auth-app/04_fims.tf

This file was deleted.

42 changes: 0 additions & 42 deletions src/domains/citizen-auth-app/99_variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,6 @@ variable "fastlogin_enabled" {
description = "Fast login LC creation flag"
}

variable "fims_enabled" {
type = bool
default = false
description = "FIMS creation flag"
}

### External resources

variable "monitor_resource_group_name" {
Expand Down Expand Up @@ -223,39 +217,3 @@ variable "function_fastlogin_autoscale_default" {
default = 1
}

# FIMS App Service
variable "cidr_subnet_fims" {
type = list(string)
description = "App service FIMS address space."
}


variable "fims_plan_sku_tier" {
type = string
description = "App service plan sku tier"
default = null
}

variable "fims_plan_sku_size" {
type = string
description = "App service plan sku size"
default = null
}

variable "fims_autoscale_minimum" {
type = number
description = "The minimum number of instances for this resource."
default = 1
}

variable "fims_autoscale_maximum" {
type = number
description = "The maximum number of instances for this resource."
default = 3
}

variable "fims_autoscale_default" {
type = number
description = "The number of instances that are available for scaling if metrics are not available for evaluation."
default = 1
}
Loading

0 comments on commit 1b269d6

Please sign in to comment.