accessKeyId

The AWS Access Key ID.

type

string

default

{
  accessKeyId = "";
}

description

Informational description of the subnet group.

type

string

default

{
  description = "NixOps-provisioned subnet group {name}";
}

name

Name of the RDS subnet group.

type

string

default

{
  name = "nixops-{uuid}-{name}";
}

region

AWS region in which the instance is to be deployed.

type

string

example

{
  region = "us-east-1";
}

subnetIds

The subnets inside a VPC to launch the databases in.

type

list of string or resource of type ‘vpc-subnet’

example

{
  subnetIds = [
    "subnet-00000000"
  ];
}

default

{
  subnetIds = [];
}