refined-terabyte-65361
07/16/2021, 9:10 PMImport sources within a group must be alphabetized.
import {ecr} from "./ecr/index";
function:
import * as aws from "@pulumi/aws";
export function ecr (ecrRepo : string){
new aws.ecr.Repository( ecrRepo, {
imageScanningConfiguration: {
scanOnPush: true,
},
imageTagMutability: "MUTABLE",
name: ecrRepo
});
}
Can someone help me fix this
Thanksacceptable-army-69872
07/16/2021, 9:20 PM