Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ While the current version is specific to SOPS, future mixins will support other
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0 |
| <a name="requirement_sops"></a> [sops](#requirement\_sops) | >= 0.7 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0 |
| <a name="provider_sops"></a> [sops](#provider\_sops) | >= 0.7 |

## Modules
Expand All @@ -67,6 +69,7 @@ No modules.

| Name | Type |
|------|------|
| [aws_ssm_parameter.ssm_secrets](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ssm_parameter) | data source |
| [sops_file.sops_secrets](https://registry.terraform.io/providers/carlpett/sops/latest/docs/data-sources/file) | data source |

## Inputs
Expand Down
8 changes: 8 additions & 0 deletions tests/locals.tftest.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ mock_provider "sops" {
}
}

mock_provider "aws" {
mock_data "aws_ssm_parameter" {
defaults = {
value = "mock-ssm-value"
}
}
}

run "test_empty_secret_mapping" {
command = plan

Expand Down
8 changes: 8 additions & 0 deletions tests/outputs.tftest.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ mock_provider "sops" {
}
}

mock_provider "aws" {
mock_data "aws_ssm_parameter" {
defaults = {
value = "mock-ssm-value"
}
}
}

run "test_output_structure_and_content" {
command = plan

Expand Down
Loading