Skip to content
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

feat(terraform): vol5237 create int environment #207

Closed
wants to merge 9 commits into from
9 changes: 9 additions & 0 deletions app/cdn/assets/_styles/components/radios.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/**
* Temporary override to support how some hints are being defined in translation keys for radio option labels.
* Can be removed on resolution of: https://dvsa.atlassian.net/browse/VOL-5688
*/
.govuk-radios__label {
.govuk-hint {
display: block;
}
}
1 change: 1 addition & 0 deletions app/cdn/assets/_styles/themes/selfserve.scss
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ $app: selfserve;
@import '../components/cookie-settings';
@import '../components/task-list';
@import '../components/candidate-permit-selection-table';
@import '../components/radios';

// Views
@import '../views/selfserve/overview';
Expand Down
11 changes: 10 additions & 1 deletion infra/terraform/environments/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,16 @@ locals {
"arn:aws:sqs:eu-west-1:054614622558:DEVAPPDEV-OLCS-PRI-CHGET-DLQ",
"arn:aws:sqs:eu-west-1:054614622558:DEVAPPDEV-OLCS-PRI-CHGET"
]
}
},
{
effect = "Allow"
actions = [
"s3:PutObject",
]
resources = [
"arn:aws:s3:::devapp-olcs-pri-olcs-autotest-s3/*",
]
},
]
}

Expand Down
25 changes: 25 additions & 0 deletions infra/terraform/environments/int/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions infra/terraform/environments/int/backend.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
terraform {
backend "s3" {
bucket = "vol-app-054614622558-terraform-state"
dynamodb_table = "vol-app-054614622558-int-terraform-state-lock"
encrypt = true
key = "int.tfstate"
region = "eu-west-1"
}
}
Loading