polite-napkin-90098
05/06/2022, 9:04 PMaws-native:efs:AccessPoint (TestinfluxAP):
error: operation CREATE failed with "InvalidRequest": Invalid request
I'll post my code in the thread.const accessPoint = new awsnative.efs.AccessPoint(`${nam}influxAP`, {
fileSystemId: efs.id,
rootDirectory: {
path: "influx",
creationInfo: {
ownerGid: "0",
ownerUid: "0",
permissions: "700",
},
},
});
efs.id is from
const efs = new awsnative.efs.FileSystem(`${nam}-influx-pvc`, {
encrypted: true,
fileSystemTags: [
{
key: "Name",
value: `${nam}-influx-pvc`,
},
],
});
${nam} is a config variable
So does anyone know why this isn't working?
tvmiawitty-candle-66007
05/09/2022, 4:36 PMcreationInfo
- if it still errors out then try
fileSystemId: efs.id.apply(id => id),
Maybe the efs.id is not being lifted as expected.polite-napkin-90098
05/09/2022, 4:38 PM/influx
and not influx
as I wrote above.witty-candle-66007
05/09/2022, 4:42 PM