Luís Rodrigues
Luís Rodrigues
Had the same issue and had to do: ``` pip install dnsq ```
I posted it in the initial report: ``` settingsbase.py:90: note: Revealed type is 'builtins.list[Tuple[builtins.str, builtins.str]]' models.py:214: note: Revealed type is 'builtins.list' ```
I just tested it again. If I just have a simple settings.py file like the one created when django starts a project there is no problem. The problem is that...
I just tried it in a test and it doesn't produce any results. Am I missing something? ``` aws_rds_instance "rds-core" do engine "postgres" publicly_accessible false db_instance_class "db.t1.micro" master_username "dbadmin" master_user_password...
Thanks @josb but still no change: ``` security_group_core_rds = aws_security_group 'security-group-core-rds' do vpc 'vpc-my' inbound_rules [ {:port => 5432, :protocol => :tcp, :sources => ["172.16.16.0/20"] }, ] aws_tags :chef_type =>...
@tyler-ball Security groups are essential to define a RDS, shouldn't they be added as attributes and allow to reference an aws_security_group directly?
Ok I didn't see it in docs so I assumed it didn't exist. Should have read the code... I just tried it on a running instance but it didn't change...
@lskillen I tried setting it to true because it was already false (running nat instance), I saw no change on console/AWS. Maybe I did something wrong...
I confirm it works for a new instance. Could this issue be kept open so that the code can be revised to work on both cases?