Skip to content

Commit

Permalink
Remove and rename admin writeable vars (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
rockycodes committed Feb 15, 2024
1 parent c826a90 commit eaeffb1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 32 deletions.
6 changes: 1 addition & 5 deletions cloud/azure/templates/azure_saml_ses/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ module "app" {

civiform_time_zone_id = var.civiform_time_zone_id

civic_entity_short_name = var.civic_entity_short_name
civic_entity_full_name = var.civic_entity_full_name
civic_entity_support_email_address = var.civic_entity_support_email_address
civic_entity_logo_with_name_url = var.civic_entity_logo_with_name_url
civic_entity_small_logo_url = var.civic_entity_small_logo_url
civic_entity_small_logo_url = var.civic_entity_small_logo_url

adfs_admin_group = var.adfs_admin_group

Expand Down
20 changes: 0 additions & 20 deletions cloud/azure/templates/azure_saml_ses/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,6 @@ variable "civiform_time_zone_id" {
default = "America/Los_Angeles"
}

variable "civic_entity_short_name" {
type = string
description = "Short name for civic entity (example: Rochester, Seattle)."
}

variable "civic_entity_full_name" {
type = string
description = "Full name for civic entity (example: City of Rochester, City of Seattle)."
}

variable "civic_entity_support_email_address" {
type = string
description = "Email address where applicants can contact civic entity for support with Civiform."
}

variable "civic_entity_logo_with_name_url" {
type = string
description = "Logo with name used on the applicant-facing program index page"
}

variable "civic_entity_small_logo_url" {
type = string
description = "Logo with name used on the applicant-facing program index page"
Expand Down
5 changes: 1 addition & 4 deletions cloud/deploys/dev_azure/civiform_config.example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
# https://docs.civiform.us/contributor-guide/developer-guide/dev-azure
export CIVIFORM_CLOUD_PROVIDER="azure"
export CIVIFORM_MODE="dev"
export CIVIC_ENTITY_SHORT_NAME="Sooschester"
export CIVIC_ENTITY_FULL_NAME="City of Sooschester"
export CIVIC_ENTITY_SUPPORT_EMAIL_ADDRESS="[email protected]"
export CIVIC_ENTITY_LOGO_WITH_NAME_URL="https://www.cityofrochester.gov/images/header-logo.png"
export SUPPORT_EMAIL_ADDRESS="[email protected]"
export CIVIC_ENTITY_SMALL_LOGO_URL="https://www.cityofrochester.gov/assets/0/117/8589934986/c6791498-270e-40b1-9b81-aca8a510c1b5.jpg"
export CIVIFORM_TIME_ZONE_ID="America/Los_Angeles"
export EMAIL_SENDER="ses"
Expand Down
6 changes: 3 additions & 3 deletions e2e-test/civiform_config_aws_oidc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ export CIVIFORM_APPLICANT_AUTH_PROTOCOL="oidc"

# REQUIRED
# The short name for the civic entity. Ex. "Rochester"
export CIVIC_ENTITY_SHORT_NAME="E2E"
export WHITELABEL_CIVIC_ENTITY_SHORT_NAME="E2E"

# REQUIRED
# The full name for the civic entity. Ex. "City of Rochester"
export CIVIC_ENTITY_FULL_NAME="E2E Test City"
export WHITELABEL_CIVIC_ENTITY_FULL_NAME="E2E Test City"

# REQUIRED
# The email address to contact for support with using Civiform. Ex. "[email protected]
export CIVIC_ENTITY_SUPPORT_EMAIL_ADDRESS="[email protected]"
export SUPPORT_EMAIL_ADDRESS="[email protected]"

# REQUIRED
# A link to an image of the civic entity logo that includes the entity name, to be used in the header for the "Get Benefits" page
Expand Down

0 comments on commit eaeffb1

Please sign in to comment.