We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The extra comma in the generated --dry-run 07-block-public-access-to-oidc-bucket.json file prevents aws cli from processing using --cli-input-json
--dry-run
07-block-public-access-to-oidc-bucket.json
--cli-input-json
ccoctl aws create-identity-provider --name testcluster --public-key-file /home/ec2-user/sts/serviceaccount-signer.public --region eu-west-1 --dry-run --create-private-s3-bucket aws s3api put-public-access-block --cli-input-json file://./07-block-public-access-to-oidc-bucket.json Error parsing parameter 'cli-input-json': Invalid JSON received. cat 07-block-public-access-to-oidc-bucket.json { "Bucket": "testcluster-oidc", "PublicAccessBlockConfiguration": { "BlockPublicAcls": true, "IgnorePublicAcls": true, "BlockPublicPolicy": true, "RestrictPublicBuckets": true }, #<-- invalid JSON } cat 07-block-public-access-to-oidc-bucket.json | jq jq: parse error: Expected another key-value pair at line 9, column 1
Works as expected with this comma removed.
cloud-credential-operator/pkg/cmd/provisioning/aws/create_identity_provider.go
Line 59 in d668c18
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The extra comma in the generated
--dry-run
07-block-public-access-to-oidc-bucket.json
file prevents aws cli from processing using--cli-input-json
Works as expected with this comma removed.
cloud-credential-operator/pkg/cmd/provisioning/aws/create_identity_provider.go
Line 59 in d668c18
The text was updated successfully, but these errors were encountered: