You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this adds a codebuild pipeline to create the docker images from https://github.com/ooni/slackin-extended/
it also adds another ec2 instance to host the service. I'm making this a draft PR because we might want to consolidate the other tier2 services as it's resource-inefficient to run an entire instance for just this service.
$ terraform validate
Warning: Argument is deprecated
with aws_s3_bucket.anoncred_manifests,
on main.tf line 255, in resource "aws_s3_bucket" "anoncred_manifests":
255: resource "aws_s3_bucket" "anoncred_manifests" {
Use the aws_s3_bucket_versioning resource instead
Warning: Available Write-only Attribute Alternative
with module.ooni_monitoring.aws_ssm_parameter.ooni_monitoring_access_key,
on ../../modules/ooni_monitoring/main.tf line 47, in resource "aws_ssm_parameter" "ooni_monitoring_access_key":
47: value = aws_iam_access_key.ooni_monitoring.id
The attribute value has a write-only alternative value_wo available. Use the
write-only alternative of the attribute when possible.
(and one more similar warning elsewhere)
Success! The configuration is valid, but there were some validation warnings
as shown above.
$ ansible-playbook playbook.yml --check --diff -i ../tf/modules/ansible_inventory/inventories/inventory-dev.ini
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'
[ERROR]: the role 'geerlingguy.docker' was not found in /home/runner/work/devops/devops/ansible/roles:/home/runner/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:/home/runner/work/devops/devops/ansible
Origin: /home/runner/work/devops/devops/ansible/deploy-testlists.yml:16:7
14 node_exporter_host: "0.0.0.0"
15 node_exporter_options: ""
16 - role: geerlingguy.docker
^ column 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
this adds a codebuild pipeline to create the docker images from https://github.com/ooni/slackin-extended/
it also adds another ec2 instance to host the service. I'm making this a draft PR because we might want to consolidate the other tier2 services as it's resource-inefficient to run an entire instance for just this service.