Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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: 1 addition & 2 deletions examples/hosting-account/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
# PHASE 2: Populate secondary_accounts with spoke role ARNs and re-apply.
#####################################################################################

module "devops_agent" {

Check failure on line 18 in examples/hosting-account/main.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_2: "Ensure Terraform module sources use a tag with a version number"

Check failure on line 18 in examples/hosting-account/main.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "appvia/devops-agent/aws"
version = "~> 0.1"
source = "appvia/devops-agent/aws"

agent_space_name = var.agent_space_name
name_prefix = var.name_prefix
Expand Down
3 changes: 1 addition & 2 deletions examples/spoke/spoke-workload-basic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
# secondary_accounts map and re-apply the hub (Phase 2).
#####################################################################################

module "spoke" {

Check failure on line 22 in examples/spoke/spoke-workload-basic/main.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_2: "Ensure Terraform module sources use a tag with a version number"

Check failure on line 22 in examples/spoke/spoke-workload-basic/main.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "appvia/devops-agent/aws//modules/spoke"
version = "~> 0.1"
source = "appvia/devops-agent/aws//modules/spoke"

agent_space_arn = var.agent_space_arn
role_name = var.role_name
Expand Down
3 changes: 1 addition & 2 deletions examples/spoke/spoke-workload-ecs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
# secondary_accounts map and re-apply the hub (Phase 2).
#####################################################################################

module "spoke" {

Check failure on line 22 in examples/spoke/spoke-workload-ecs/main.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "appvia/devops-agent/aws//modules/spoke"
version = "~> 0.1"
source = "appvia/devops-agent/aws//modules/spoke"

agent_space_arn = var.agent_space_arn
role_name = var.role_name
Expand Down
3 changes: 1 addition & 2 deletions examples/spoke/spoke-workload-eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
#####################################################################################

module "spoke" {
source = "appvia/devops-agent/aws//modules/spoke"
version = "~> 0.1"
source = "appvia/devops-agent/aws//modules/spoke"

agent_space_arn = var.agent_space_arn
role_name = var.role_name
Expand Down
Loading