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
Feature: Ensure all Tags are present
Scenario Outline: Ensure that specific tags are defined
Given I have resource that supports tags defined
When it has tags
Then it must contain tags
Then it must contain "<tags>"
And its value must match the "<value>" regex
Is failing on some resources where a terraform plan provides a "(known after apply)" for tag value, i.e.:
# aws_cloudwatch_log_group.vpc will be created+resource"aws_cloudwatch_log_group""vpc" {
+arn=(known after apply)
+id=(known after apply)
+kms_key_id=(known after apply)
+name=(known after apply)
+retention_in_days=365+tags=(known after apply)
+tags_all=(known after apply)
}
To Reproduce
Sample Terraform Code:
resource"aws_subnet""public" {
count=local.public_subnets_sizevpc_id=aws_vpc.vpc.idcidr_block=element(lookup(var.vpc_info, "public-subnets"), count.index)
availability_zone=element(local.sorted_azs, count.index)
map_public_ip_on_launch="false"tags=merge(
var.tags,
{
# Get the last 2 chars of "af-south-1x" to give unique subnet names i.e. public-1a"Name"="public-${substr(element(local.sorted_azs, count.index), 9, 2)}"
},
)
}
Failure: aws_internet_gateway.vpc-igw[0] (resource that supports tags) does not have module_name property.
Feature File:
Feature: Ensure all Tags are presentScenario Outline: Ensure that specific tags are definedGiven I have resource that supports tags defined
When it has tags
Then it must contain tags
Then it must contain "<tags>"And its value must match the "<value>" regex
Examples:
| tags | value | | account_name | .+ | | data_type | .+ | | module_name | .+ | | service_related | .+ | | squad | .+ |
Expected Behavior:
compliance step to pass
The text was updated successfully, but these errors were encountered:
Description
Is failing on some resources where a terraform plan provides a "(known after apply)" for tag value, i.e.:
To Reproduce
Sample Terraform Code:
Terraform code for a failing resouce:
Plan File:
plan.out.json.zip
Used
terraform-compliance
Parameters:The terraform compliance steps were carried out using the action:
Error Output:
Feature File:
Expected Behavior:
compliance step to pass
The text was updated successfully, but these errors were encountered: