Difference between revisions of "Terraform resource: aws ecr repository"

From wikieduonline
Jump to navigation Jump to search
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecr_repository
 
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/ecr_repository
  
Example:
+
== Example ==
<pre>
+
resource "aws_ecr_repository" "foo" {
resource "aws_ecr_repository" "foo" {
+
  name                = "bar"
  name                = "bar"
+
  [[image_tag_mutability]] = "MUTABLE"  
  image_tag_mutability = "MUTABLE"
+
 +
  image_scanning_configuration {
 +
    [[scan_on_push]] = true
 +
  }
 +
}
  
  image_scanning_configuration {
+
== Related ==
    scan_on_push = true
+
{{tf ecr TOC}}
  }
 
}
 
</pre>
 
  
 
== See also ==
 
== See also ==
 +
* {{tf ecr}}
 
* {{aws ecr}}
 
* {{aws ecr}}
* {{terraform aws resources}}
 
  
 
[[Category:Terraform]]
 
[[Category:Terraform]]

Latest revision as of 15:57, 2 October 2024

Advertising: