refined-terabyte-65361
07/13/2021, 6:52 PMimport * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const foo = new aws.ecr.Repository("foo", {
imageScanningConfiguration: {
scanOnPush: true,
},
imageTagMutability: "MUTABLE",
});
but when my repo gets created i am expecting name to be foo but it creates repo with random id foo-719afa7
how to create repo without random id ?red-match-15116
07/13/2021, 6:55 PM