Skip to content

Commit

Permalink
env settings
Browse files Browse the repository at this point in the history
  • Loading branch information
manuraf committed Mar 5, 2024
1 parent 666b8d2 commit f53cc0d
Show file tree
Hide file tree
Showing 6 changed files with 336 additions and 0 deletions.
56 changes: 56 additions & 0 deletions infra/container_apps/env/dev-pnpg/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,63 @@ container_app = {
}

app_settings = [
{
name = "JAVA_TOOL_OPTIONS"
value = "-javaagent:applicationinsights-agent.jar"
},
{
name = "APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL"
value = "OFF"
},
{
name = "MS_PARTY_REGISTRY_PROXY_LOG_LEVEL"
value = "DEBUG"
},
{
name = "MOCK_OPEN_DATA_ENABLED"
value = "true"
},
{
name = "MOCK_OPEN_DATA_URL"
value = "https://selcdweupnpgcheckoutsa.z6.web.core.windows.net/resources"
},
{
name = "MOCK_OPEN_DATA_INSTITUTION_ENDPOINT"
value = "/institutions-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_CATEGORY_ENDPOINT"
value = "/categories-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_AOO_ENDPOINT"
value = "/aoo-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_UO_ENDPOINT"
value = "/uo-open-data-mock.csv"
},
{
name = "INFO_CAMERE_URL"
value = "https://icapiscl.infocamere.it"
},
{
name = "INFO_CAMERE_INSTITUTIONS_BY_LEGAL_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/listaLegaleRappresentante/{taxId}"
},
{
name = "INFO_CAMERE_AUTHENTICATION_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/authentication"
},
{
name = "NATIONAL_REGISTRIES_URL"
value = "https://api-selcpg.dev.notifichedigitali.it/national-registries-private"
}
]

secrets_names = [
{
"BLOB_STORAGE_CONN_STRING" = "web-storage-connection-string"
"NATIONAL_REGISTRY_API_KEY" = "national-registry-api-key"
}
]
64 changes: 64 additions & 0 deletions infra/container_apps/env/dev/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,71 @@ container_app = {
}

app_settings = [
{
name = "JAVA_TOOL_OPTIONS"
value = "-javaagent:applicationinsights-agent.jar"
},
{
name = "APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL"
value = "OFF"
},
{
name = "MS_PARTY_REGISTRY_PROXY_LOG_LEVEL"
value = "DEBUG"
},
{
name = "MOCK_OPEN_DATA_ENABLED"
value = "true"
},
{
name = "MOCK_OPEN_DATA_URL"
value = "https://selcdcheckoutsa.z6.web.core.windows.net/resources"
},
{
name = "MOCK_OPEN_DATA_INSTITUTION_ENDPOINT"
value = "/institutions-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_CATEGORY_ENDPOINT"
value = "/categories-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_AOO_ENDPOINT"
value = "/aoo-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_UO_ENDPOINT"
value = "/uo-open-data-mock.csv"
},
{
name = "INFO_CAMERE_URL"
value = "https://icapiscl.infocamere.it"
},
{
name = "INFO_CAMERE_INSTITUTIONS_BY_LEGAL_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/listaLegaleRappresentante/{taxId}"
},
{
name = "INFO_CAMERE_AUTHENTICATION_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/authentication"
},
{
name = "ANAC_FTP_IP"
value = "93.43.119.85"
},
{
name = "ANAC_FTP_USER"
value = "PagoPA_user"
},
{
name = "ANAC_FTP_DIRECTORY"
value = "/mnt/RegistroGestoriPiattaforme/Collaudo/"
}
]

secrets_names = [
{
"BLOB_STORAGE_CONN_STRING" = "web-storage-connection-string"
"NATIONAL_REGISTRY_API_KEY" = "national-registry-api-key"
}
]
56 changes: 56 additions & 0 deletions infra/container_apps/env/prod-pnpg/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,63 @@ container_app = {
}

app_settings = [
{
name = "JAVA_TOOL_OPTIONS"
value = "-javaagent:applicationinsights-agent.jar"
},
{
name = "APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL"
value = "OFF"
},
{
name = "MS_PARTY_REGISTRY_PROXY_LOG_LEVEL"
value = "DEBUG"
},
{
name = "MOCK_OPEN_DATA_ENABLED"
value = "true"
},
{
name = "MOCK_OPEN_DATA_URL"
value = "https://selcpweupnpgcheckoutsa.z6.web.core.windows.net/resources"
},
{
name = "MOCK_OPEN_DATA_INSTITUTION_ENDPOINT"
value = "/institutions-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_CATEGORY_ENDPOINT"
value = "/categories-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_AOO_ENDPOINT"
value = "/aoo-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_UO_ENDPOINT"
value = "/uo-open-data-mock.csv"
},
{
name = "INFO_CAMERE_URL"
value = "https://icapiscl.infocamere.it"
},
{
name = "INFO_CAMERE_INSTITUTIONS_BY_LEGAL_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/listaLegaleRappresentante/{taxId}"
},
{
name = "INFO_CAMERE_AUTHENTICATION_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/authentication"
},
{
name = "NATIONAL_REGISTRIES_URL"
value = "https://api-selcpg.notifichedigitali.it/national-registries-private"
}
]

secrets_names = [
{
"BLOB_STORAGE_CONN_STRING" = "web-storage-connection-string"
"NATIONAL_REGISTRY_API_KEY" = "national-registry-api-key"
}
]
52 changes: 52 additions & 0 deletions infra/container_apps/env/prod/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,59 @@ container_app = {
}

app_settings = [
{
name = "JAVA_TOOL_OPTIONS"
value = "-javaagent:applicationinsights-agent.jar"
},
{
name = "APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL"
value = "OFF"
},
{
name = "MS_PARTY_REGISTRY_PROXY_LOG_LEVEL"
value = "DEBUG"
},
{
name = "MOCK_OPEN_DATA_ENABLED"
value = "true"
},
{
name = "MOCK_OPEN_DATA_URL"
value = "https://selcdcheckoutsa.z6.web.core.windows.net/resources"
},
{
name = "MOCK_OPEN_DATA_INSTITUTION_ENDPOINT"
value = "/institutions-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_CATEGORY_ENDPOINT"
value = "/categories-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_AOO_ENDPOINT"
value = "/aoo-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_UO_ENDPOINT"
value = "/uo-open-data-mock.csv"
},
{
name = "ANAC_FTP_IP"
value = "93.43.119.85"
},
{
name = "ANAC_FTP_USER"
value = "PagoPA_user"
},
{
name = "ANAC_FTP_DIRECTORY"
value = "/mnt/RegistroGestoriPiattaforme/Collaudo/"
}
]

secrets_names = [
{
"BLOB_STORAGE_CONN_STRING" = "web-storage-connection-string"
"NATIONAL_REGISTRY_API_KEY" = "national-registry-api-key"
}
]
56 changes: 56 additions & 0 deletions infra/container_apps/env/uat-pnpg/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,63 @@ container_app = {
}

app_settings = [
{
name = "JAVA_TOOL_OPTIONS"
value = "-javaagent:applicationinsights-agent.jar"
},
{
name = "APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL"
value = "OFF"
},
{
name = "MS_PARTY_REGISTRY_PROXY_LOG_LEVEL"
value = "DEBUG"
},
{
name = "MOCK_OPEN_DATA_ENABLED"
value = "true"
},
{
name = "MOCK_OPEN_DATA_URL"
value = "https://selcuweupnpgcheckoutsa.z6.web.core.windows.net/resources"
},
{
name = "MOCK_OPEN_DATA_INSTITUTION_ENDPOINT"
value = "/institutions-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_CATEGORY_ENDPOINT"
value = "/categories-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_AOO_ENDPOINT"
value = "/aoo-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_UO_ENDPOINT"
value = "/uo-open-data-mock.csv"
},
{
name = "INFO_CAMERE_URL"
value = "https://icapiscl.infocamere.it"
},
{
name = "INFO_CAMERE_INSTITUTIONS_BY_LEGAL_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/listaLegaleRappresentante/{taxId}"
},
{
name = "INFO_CAMERE_AUTHENTICATION_ENDPOINT"
value = "/ic/ce/wspa/wspa/rest/authentication"
},
{
name = "NATIONAL_REGISTRIES_URL"
value = "https://api-selcpg.uat.notifichedigitali.it/national-registries-private"
}
]

secrets_names = [
{
"BLOB_STORAGE_CONN_STRING" = "web-storage-connection-string"
"NATIONAL_REGISTRY_API_KEY" = "national-registry-api-key"
}
]
52 changes: 52 additions & 0 deletions infra/container_apps/env/uat/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,59 @@ container_app = {
}

app_settings = [
{
name = "JAVA_TOOL_OPTIONS"
value = "-javaagent:applicationinsights-agent.jar"
},
{
name = "APPLICATIONINSIGHTS_INSTRUMENTATION_LOGGING_LEVEL"
value = "OFF"
},
{
name = "MS_PARTY_REGISTRY_PROXY_LOG_LEVEL"
value = "DEBUG"
},
{
name = "MOCK_OPEN_DATA_ENABLED"
value = "true"
},
{
name = "MOCK_OPEN_DATA_URL"
value = "https://selcucheckoutsa.z6.web.core.windows.net/resources"
},
{
name = "MOCK_OPEN_DATA_INSTITUTION_ENDPOINT"
value = "/institutions-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_CATEGORY_ENDPOINT"
value = "/categories-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_AOO_ENDPOINT"
value = "/aoo-open-data-mock.csv"
},
{
name = "MOCK_OPEN_DATA_UO_ENDPOINT"
value = "/uo-open-data-mock.csv"
},
{
name = "ANAC_FTP_IP"
value = "93.43.119.85"
},
{
name = "ANAC_FTP_USER"
value = "PagoPA_user"
},
{
name = "ANAC_FTP_DIRECTORY"
value = "/mnt/RegistroGestoriPiattaforme/Collaudo/"
}
]

secrets_names = [
{
"BLOB_STORAGE_CONN_STRING" = "web-storage-connection-string"
"NATIONAL_REGISTRY_API_KEY" = "national-registry-api-key"
}
]

0 comments on commit f53cc0d

Please sign in to comment.