File: issue12.hcl

package info (click to toggle)
python-pyhcl 0.4.4-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 664 kB
  • sloc: python: 3,833; makefile: 25; sh: 6
file content (9 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
resource "aws_db_instance" "mysqldb" {
    identifier = "${var.environment}-mysqldb"
    allocated_storage = 100
}
resource "aws_db_instance" "mysqldb-readonly" {
    identifier = "${var.environment}-mysqldb-readonly"
    allocated_storage = 100
}