Sina Bakhtiari
05/17/2021, 12:31 PMTim (Infracost)
05/17/2021, 12:41 PMresource "aws_db_instance" "aurora" {
engine = "aurora"
instance_class = "db.t3.small"
}
resource "aws_db_instance" "aurora-mysql" {
engine = "aurora-mysql"
instance_class = "db.t3.small"
}
...
Sina Bakhtiari
05/17/2021, 12:49 PMTim (Infracost)
05/17/2021, 12:58 PMSina Bakhtiari
05/17/2021, 1:51 PMA
value is X
then we set the query field B
to Z
. These are where most errors are. I personally can think of at-least 2-3 times that my code had such errors and the reviewer found it.Tim (Infracost)
05/17/2021, 2:33 PMSina Bakhtiari
05/17/2021, 3:07 PMresourceGroup
is based on the value of storageClass
(there is a probability of typos here). Then if resourceGroup
is regional and we have certain location
field we have to change the resourceGroup
. So it's kind of a nested switch statement.Tim (Infracost)
05/17/2021, 3:23 PMAli (Infracost)
05/17/2021, 10:12 PMSina Bakhtiari
05/18/2021, 7:27 PM