コード例 #1
0
        public static Cluster CreateRedshiftCluster(string databaseName, Output <string> iamRole, InputList <string> subnets, Output <string> vpcSecurityGroupId)
        {
            var subnetGroup = new SubnetGroup($"{Common.appName.Replace("_", "-").ToLower()}-subnet-group", new  SubnetGroupArgs()
            {
                SubnetIds = subnets,
                Tags      = Common.tags
            });

            return(new Cluster($"{Common.appName}-redshift", new ClusterArgs()
            {
                ClusterIdentifier = $"{Common.appName.Replace("_", "-")}-redshift-1".ToLower(),
                ClusterType = "single-node",
                DatabaseName = databaseName,
                MasterPassword = "******",
                MasterUsername = "******",
                NodeType = "dc2.large",
                IamRoles = iamRole,
                Tags = Common.tags,
                AutomatedSnapshotRetentionPeriod = 0,
                SkipFinalSnapshot = true,
                ClusterSubnetGroupName = subnetGroup.Name,
                VpcSecurityGroupIds = new InputList <string> {
                    vpcSecurityGroupId
                }
            }));
        }
コード例 #2
0
 public ISubnetGroup LocateSubnetGroupByName(string identification, string subnetGroupName)
 {
     return(SubnetGroup.FromSubnetGroupName(Scope, identification, subnetGroupName));
 }