pulumi-logtail
Version:
A Pulumi provider for managing Logtail log management and analytics resources, dynamically bridged from the Terraform Logtail provider with support for sources, metrics, and log aggregation.
30 lines (29 loc) • 591 B
TypeScript
export interface GetSourceCustomBucket {
accessKeyId: string;
endpoint: string;
keepDataAfterRetention: boolean;
name: string;
secretAccessKey: string;
}
export interface SourceCustomBucket {
/**
* Access key ID
*/
accessKeyId: string;
/**
* Bucket endpoint
*/
endpoint: string;
/**
* Whether we should keep data in the bucket after the retention period.
*/
keepDataAfterRetention?: boolean;
/**
* Bucket name
*/
name: string;
/**
* Secret access key
*/
secretAccessKey: string;
}