Skip to content

Commit

Permalink
ELM Add sftp account for unstructured atrium data (#5450)
Browse files Browse the repository at this point in the history
* Add sftp account for unstructured atrium data

* add null provider
  • Loading branch information
pricemg authored Mar 22, 2024
1 parent 1c577ed commit 8e329cd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
7 changes: 7 additions & 0 deletions terraform/environments/electronic-monitoring-data/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,13 @@ locals {
cidr_ipv6s = local.g4s_cidr_ipv6s
}

sftp_account_g4s_atrium_unstructured = {
name = "atrium_unstructured"
ssh_keys = local.g4s_ssh_keys
cidr_ipv4s = local.g4s_cidr_ipv4s
cidr_ipv6s = local.g4s_cidr_ipv6s
}

sftp_account_g4s_atv = {
name = "atv"
ssh_keys = local.g4s_ssh_keys
Expand Down
11 changes: 6 additions & 5 deletions terraform/environments/electronic-monitoring-data/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,17 @@ module "g4s" {
# local.sftp_account_g4s_test,

# Accounts for each system to be migrated.
local.sftp_account_g4s_atrium,
# local.sftp_account_g4s_atrium,
local.sftp_account_g4s_atrium_unstructured,
# local.sftp_account_g4s_cap_dw,
# local.sftp_account_g4s_integrity,
# local.sftp_account_g4s_telephony,
# local.sftp_account_g4s_fep,
# local.sftp_account_g4s_tasking,
local.sftp_account_g4s_subject_history,
local.sftp_account_g4s_atv,
local.sftp_account_g4s_emsys_mvp,
local.sftp_account_g4s_emsys_tpims,
# local.sftp_account_g4s_subject_history,
# local.sftp_account_g4s_atv,
# local.sftp_account_g4s_emsys_mvp,
# local.sftp_account_g4s_emsys_tpims,
]

data_store_bucket = aws_s3_bucket.data_store
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ terraform {
version = "~> 3.0"
source = "hashicorp/http"
}
null = {
source = "hashicorp/null"
version = "3.2.2"
}
}
required_version = "~> 1.0"
}

0 comments on commit 8e329cd

Please sign in to comment.