You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the head of the verbose log output showing the return call for iam
ts=2019-09-26T22:09:32.809406641Z caller=import.go:47 func=provider.Import filters="\n\tTags: [],\n\tInclude: [aws_iam_policy],\n\tExclude: [],\n"
ts=2019-09-26T22:09:32.809421957Z caller=import.go:57 func=provider.Import resource=aws_iam_policy msg="fetching the list of resources"
ts=2019-09-26T22:09:32.857468923Z caller=import.go:70 func=provider.Import resource=aws_iam_policy id=arn:aws:iam::XXXX:policy/XXXX total=100 current=1 msg="reading from TF"
I also did a spot check against the aws cli command to check how many local/customer managed IAM policies the account is using/attached and it's definitely over 100. Not sure where it's being truncated.
Running the command the list out all aws_iam_policies and it's only ever returning a max of 100
terracognita aws --hcl policy.tf --tfstate .terraform/terraform.tfstate -i aws_iam_policy --access-key=$AWS_ACCESS_KEY_ID --secret-key=$AWS_SECRET_ACCESS_KEY --region=$AWS_REGION --verbose > output
the head of the verbose log output showing the return call for iam
I also did a spot check against the aws cli command to check how many local/customer managed IAM policies the account is using/attached and it's definitely over 100. Not sure where it's being truncated.
aws list-policies --only-attached --scope Local | grep PolicyName | wc -l
The text was updated successfully, but these errors were encountered: