Difference between revisions of "Scan type"

From wikieduonline
Jump to navigation Jump to search
(Created page with "{{lc}} <pre> resource "aws_ecr_registry_scanning_configuration" "configuration" { scan_type = "ENHANCED" rule { scan_frequency = "CONTINUOUS_SCAN" reposito...")
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
  
<pre>
+
 
 
  resource "aws_ecr_registry_scanning_configuration" "configuration" {
 
  resource "aws_ecr_registry_scanning_configuration" "configuration" {
 
   [[scan_type]] = "ENHANCED"
 
   [[scan_type]] = "ENHANCED"
Line 13: Line 13:
 
   }
 
   }
 
  }
 
  }
</pre>
 
  
 +
== See also ==
 +
* {{tf ecr}}
  
{{tf ecr}}
+
[[Category:ECR]]

Latest revision as of 10:27, 15 July 2024


resource "aws_ecr_registry_scanning_configuration" "configuration" {
 scan_type = "ENHANCED"

 rule {
   scan_frequency = "CONTINUOUS_SCAN"
   repository_filter {
     filter      = "example"
     filter_type = "WILDCARD"
   }
 }
}

See also[edit]

Advertising: