├── .config ├── .checkov.yml ├── .mdlrc ├── .terraform-docs.yaml ├── .tflint.hcl ├── .tfsec.yml ├── .tfsec │ ├── launch_configuration_imdsv2_tfchecks.json │ ├── launch_template_imdsv2_tfchecks.json │ ├── no_launch_config_tfchecks.json │ ├── sg_no_embedded_egress_rules_tfchecks.json │ └── sg_no_embedded_ingress_rules_tfchecks.json ├── functional_tests │ ├── post-entrypoint-helpers.sh │ └── pre-entrypoint-helpers.sh └── static_tests │ ├── post-entrypoint-helpers.sh │ └── pre-entrypoint-helpers.sh ├── .copier-answers.yml ├── .gitignore ├── .header.md ├── .pre-commit-config.yaml ├── .project_automation ├── deprecation │ └── entrypoint.sh ├── deprovision │ └── entrypoint.sh ├── functional_tests │ ├── Dockerfile │ ├── entrypoint.sh │ └── functional_tests.sh ├── init │ └── noop.sh ├── provision │ └── entrypoint.sh ├── publication │ ├── Dockerfile │ └── entrypoint.sh ├── static_tests │ ├── Dockerfile │ ├── entrypoint.sh │ └── static_tests.sh └── update │ └── noop.sh ├── .project_config.yml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE.txt ├── README.md ├── VERSION ├── bda.tf ├── data-source.tf ├── data.tf ├── examples ├── .DS_Store ├── agent-collaborator │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── agent-only │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── agent-with-guardrails │ ├── .header.md │ ├── README.md │ ├── main.tf │ ├── providers.tf │ └── variables.tf ├── agent-with-inference-profile │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── agent-with-knowledge-base │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── application-inference-profile │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── bda │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── kendra-kb │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── knowledge-base-only │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf └── prompt-management │ ├── .header.md │ ├── README.md │ ├── main.tf │ └── providers.tf ├── iam.tf ├── inference-profile.tf ├── kendra.tf ├── knowledge-base.tf ├── main.tf ├── opensearch.tf ├── outputs.tf ├── prompt.tf ├── providers.tf ├── tests ├── 01_mandatory.tftest.hcl ├── 02_guardrails.tftest.hcl ├── 03_prompt_management.tftest.hcl ├── 04_inference_profile.tftest.hcl ├── 05_agent_collaborator.tftest.hcl ├── 06_kendra_kb.tftest.hcl ├── 07_knowledge_base_only_tftest.hcl └── 08_bda_tftest.hcl └── variables.tf /.config/.checkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.checkov.yml -------------------------------------------------------------------------------- /.config/.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.mdlrc -------------------------------------------------------------------------------- /.config/.terraform-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.terraform-docs.yaml -------------------------------------------------------------------------------- /.config/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.tflint.hcl -------------------------------------------------------------------------------- /.config/.tfsec.yml: -------------------------------------------------------------------------------- 1 | { 2 | "minimum_severity": "MEDIUM" 3 | } -------------------------------------------------------------------------------- /.config/.tfsec/launch_configuration_imdsv2_tfchecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.tfsec/launch_configuration_imdsv2_tfchecks.json -------------------------------------------------------------------------------- /.config/.tfsec/launch_template_imdsv2_tfchecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.tfsec/launch_template_imdsv2_tfchecks.json -------------------------------------------------------------------------------- /.config/.tfsec/no_launch_config_tfchecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.tfsec/no_launch_config_tfchecks.json -------------------------------------------------------------------------------- /.config/.tfsec/sg_no_embedded_egress_rules_tfchecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.tfsec/sg_no_embedded_egress_rules_tfchecks.json -------------------------------------------------------------------------------- /.config/.tfsec/sg_no_embedded_ingress_rules_tfchecks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/.tfsec/sg_no_embedded_ingress_rules_tfchecks.json -------------------------------------------------------------------------------- /.config/functional_tests/post-entrypoint-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/functional_tests/post-entrypoint-helpers.sh -------------------------------------------------------------------------------- /.config/functional_tests/pre-entrypoint-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/functional_tests/pre-entrypoint-helpers.sh -------------------------------------------------------------------------------- /.config/static_tests/post-entrypoint-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/static_tests/post-entrypoint-helpers.sh -------------------------------------------------------------------------------- /.config/static_tests/pre-entrypoint-helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.config/static_tests/pre-entrypoint-helpers.sh -------------------------------------------------------------------------------- /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.gitignore -------------------------------------------------------------------------------- /.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.header.md -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.project_automation/deprecation/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/deprecation/entrypoint.sh -------------------------------------------------------------------------------- /.project_automation/deprovision/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/deprovision/entrypoint.sh -------------------------------------------------------------------------------- /.project_automation/functional_tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/functional_tests/Dockerfile -------------------------------------------------------------------------------- /.project_automation/functional_tests/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/functional_tests/entrypoint.sh -------------------------------------------------------------------------------- /.project_automation/functional_tests/functional_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/functional_tests/functional_tests.sh -------------------------------------------------------------------------------- /.project_automation/init/noop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Not Supported!" 3 | -------------------------------------------------------------------------------- /.project_automation/provision/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/provision/entrypoint.sh -------------------------------------------------------------------------------- /.project_automation/publication/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/publication/Dockerfile -------------------------------------------------------------------------------- /.project_automation/publication/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/publication/entrypoint.sh -------------------------------------------------------------------------------- /.project_automation/static_tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/static_tests/Dockerfile -------------------------------------------------------------------------------- /.project_automation/static_tests/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/static_tests/entrypoint.sh -------------------------------------------------------------------------------- /.project_automation/static_tests/static_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_automation/static_tests/static_tests.sh -------------------------------------------------------------------------------- /.project_automation/update/noop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Not Supported!" 3 | -------------------------------------------------------------------------------- /.project_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/.project_config.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.0.31 -------------------------------------------------------------------------------- /bda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/bda.tf -------------------------------------------------------------------------------- /data-source.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/data-source.tf -------------------------------------------------------------------------------- /data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/data.tf -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/agent-collaborator/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-collaborator/.header.md -------------------------------------------------------------------------------- /examples/agent-collaborator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-collaborator/README.md -------------------------------------------------------------------------------- /examples/agent-collaborator/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-collaborator/main.tf -------------------------------------------------------------------------------- /examples/agent-collaborator/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-collaborator/providers.tf -------------------------------------------------------------------------------- /examples/agent-only/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-only/.header.md -------------------------------------------------------------------------------- /examples/agent-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-only/README.md -------------------------------------------------------------------------------- /examples/agent-only/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-only/main.tf -------------------------------------------------------------------------------- /examples/agent-only/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-only/providers.tf -------------------------------------------------------------------------------- /examples/agent-with-guardrails/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-guardrails/.header.md -------------------------------------------------------------------------------- /examples/agent-with-guardrails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-guardrails/README.md -------------------------------------------------------------------------------- /examples/agent-with-guardrails/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-guardrails/main.tf -------------------------------------------------------------------------------- /examples/agent-with-guardrails/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-guardrails/providers.tf -------------------------------------------------------------------------------- /examples/agent-with-guardrails/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-guardrails/variables.tf -------------------------------------------------------------------------------- /examples/agent-with-inference-profile/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-inference-profile/.header.md -------------------------------------------------------------------------------- /examples/agent-with-inference-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-inference-profile/README.md -------------------------------------------------------------------------------- /examples/agent-with-inference-profile/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-inference-profile/main.tf -------------------------------------------------------------------------------- /examples/agent-with-inference-profile/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-inference-profile/providers.tf -------------------------------------------------------------------------------- /examples/agent-with-knowledge-base/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-knowledge-base/.header.md -------------------------------------------------------------------------------- /examples/agent-with-knowledge-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-knowledge-base/README.md -------------------------------------------------------------------------------- /examples/agent-with-knowledge-base/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-knowledge-base/main.tf -------------------------------------------------------------------------------- /examples/agent-with-knowledge-base/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/agent-with-knowledge-base/providers.tf -------------------------------------------------------------------------------- /examples/application-inference-profile/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/application-inference-profile/.header.md -------------------------------------------------------------------------------- /examples/application-inference-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/application-inference-profile/README.md -------------------------------------------------------------------------------- /examples/application-inference-profile/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/application-inference-profile/main.tf -------------------------------------------------------------------------------- /examples/application-inference-profile/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/application-inference-profile/providers.tf -------------------------------------------------------------------------------- /examples/bda/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/bda/.header.md -------------------------------------------------------------------------------- /examples/bda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/bda/README.md -------------------------------------------------------------------------------- /examples/bda/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/bda/main.tf -------------------------------------------------------------------------------- /examples/bda/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/bda/providers.tf -------------------------------------------------------------------------------- /examples/kendra-kb/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/kendra-kb/.header.md -------------------------------------------------------------------------------- /examples/kendra-kb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/kendra-kb/README.md -------------------------------------------------------------------------------- /examples/kendra-kb/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/kendra-kb/main.tf -------------------------------------------------------------------------------- /examples/kendra-kb/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/kendra-kb/providers.tf -------------------------------------------------------------------------------- /examples/knowledge-base-only/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/knowledge-base-only/.header.md -------------------------------------------------------------------------------- /examples/knowledge-base-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/knowledge-base-only/README.md -------------------------------------------------------------------------------- /examples/knowledge-base-only/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/knowledge-base-only/main.tf -------------------------------------------------------------------------------- /examples/knowledge-base-only/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/knowledge-base-only/providers.tf -------------------------------------------------------------------------------- /examples/prompt-management/.header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/prompt-management/.header.md -------------------------------------------------------------------------------- /examples/prompt-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/prompt-management/README.md -------------------------------------------------------------------------------- /examples/prompt-management/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/prompt-management/main.tf -------------------------------------------------------------------------------- /examples/prompt-management/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/examples/prompt-management/providers.tf -------------------------------------------------------------------------------- /iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/iam.tf -------------------------------------------------------------------------------- /inference-profile.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/inference-profile.tf -------------------------------------------------------------------------------- /kendra.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/kendra.tf -------------------------------------------------------------------------------- /knowledge-base.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/knowledge-base.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/main.tf -------------------------------------------------------------------------------- /opensearch.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/opensearch.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/outputs.tf -------------------------------------------------------------------------------- /prompt.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/prompt.tf -------------------------------------------------------------------------------- /providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/providers.tf -------------------------------------------------------------------------------- /tests/01_mandatory.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/01_mandatory.tftest.hcl -------------------------------------------------------------------------------- /tests/02_guardrails.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/02_guardrails.tftest.hcl -------------------------------------------------------------------------------- /tests/03_prompt_management.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/03_prompt_management.tftest.hcl -------------------------------------------------------------------------------- /tests/04_inference_profile.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/04_inference_profile.tftest.hcl -------------------------------------------------------------------------------- /tests/05_agent_collaborator.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/05_agent_collaborator.tftest.hcl -------------------------------------------------------------------------------- /tests/06_kendra_kb.tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/06_kendra_kb.tftest.hcl -------------------------------------------------------------------------------- /tests/07_knowledge_base_only_tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/07_knowledge_base_only_tftest.hcl -------------------------------------------------------------------------------- /tests/08_bda_tftest.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/tests/08_bda_tftest.hcl -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-ia/terraform-aws-bedrock/HEAD/variables.tf --------------------------------------------------------------------------------