Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions drivers/acm.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,7 @@ func acmCertToOutput(name string, cert *acmtypes.CertificateDetail) *interfaces.
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *ACMDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*ACMDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/alb.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,7 @@ func albLBToOutput(lb *elbtypes.LoadBalancer) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *ALBDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*ALBDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/apigateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,7 @@ func apigwAPIToOutput(name string, apiID, endpoint *string, protocol string) *in
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *APIGatewayDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*APIGatewayDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/ecr.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,7 @@ func ecrRepoToOutput(repo *ecrtypes.Repository) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *ECRDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*ECRDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/ecs.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,7 @@ func ecsServiceToOutput(name string, svc *ecstypes.Service) *interfaces.Resource
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *ECSDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*ECSDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/eks.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,7 @@ func eksClusterToOutput(c *ekstypes.Cluster) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *EKSDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*EKSDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/elasticache.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,7 @@ func ecRGToOutput(rg *ectypes.ReplicationGroup) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *ElastiCacheDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*ElastiCacheDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/iam.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,4 +229,7 @@ func defaultAssumeRolePolicy() string {
return string(data)
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *IAMDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*IAMDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/rds.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,7 @@ func rdsDBToOutput(db *rdstypes.DBInstance) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *RDSDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*RDSDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/route53.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,7 @@ func r53ZoneToOutput(name string, zone *r53types.HostedZone) *interfaces.Resourc
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *Route53Driver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*Route53Driver)(nil)
3 changes: 3 additions & 0 deletions drivers/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,7 @@ func s3BucketToOutput(name, region string) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *S3Driver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*S3Driver)(nil)
3 changes: 3 additions & 0 deletions drivers/sg.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,4 +224,7 @@ func sgToOutput(name, groupID, vpcID string) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *SecurityGroupDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*SecurityGroupDriver)(nil)
3 changes: 3 additions & 0 deletions drivers/vpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,7 @@ func vpcToOutput(name string, vpc *ec2types.Vpc) *interfaces.ResourceOutput {
}
}

// SensitiveKeys returns output keys whose values should be masked in logs and plan output.
func (d *VPCDriver) SensitiveKeys() []string { return nil }

var _ interfaces.ResourceDriver = (*VPCDriver)(nil)
Loading