-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
211 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
AWSTemplateFormatVersion: '2010-09-09' | ||
Transform: AWS::Serverless-2016-10-31 | ||
Description: AWS account observability stack | ||
|
||
Parameters: | ||
AwsOrgId: | ||
Type: String | ||
AwsOrgRootId: | ||
Type: String | ||
TargetRegions: | ||
Type: String | ||
ManagementOu: | ||
Type: String | ||
ObservabilityOu: | ||
Type: String | ||
DatadogSite: | ||
Type: String | ||
DatadogApiKey: | ||
Type: String | ||
NoEcho: 'true' | ||
DatadogAppKey: | ||
Type: String | ||
NoEcho: 'true' | ||
DataDogLogsDestinationArn: | ||
Type: String | ||
NoEcho: 'true' | ||
AwsOamSinkArn: | ||
Type: String | ||
|
||
Resources: | ||
DatadogShippingStackSet: | ||
Type: AWS::Serverless::Application | ||
Properties: | ||
Location: "./stacksets/datadog-shipping/stackset.yaml" | ||
Parameters: | ||
AwsOrgId: !Ref AwsOrgId | ||
ObservabilityOu: !Ref ObservabilityOu | ||
TargetRegions: !Ref TargetRegions | ||
DatadogSite: !Ref DatadogSite | ||
DatadogApiKey: !Ref DatadogApiKey | ||
|
||
# DatadogIntegrationStackSet: | ||
# Type: AWS::Serverless::Application | ||
# Properties: | ||
# Location: "./stacksets/datadog-integration/stackset.yaml" | ||
# Parameters: | ||
# DeploymentOrgId: !Ref AwsOrgRootId | ||
# TargetRegions: !Ref TargetRegions | ||
# DatadogApiKey: !Ref DatadogApiKey | ||
# DatadogAppKey: !Ref DatadogAppKey | ||
# DatadogSite: !Ref DatadogSite | ||
# DisableMetricCollection: 'true' | ||
|
||
# LogShippingStackSet: | ||
# Type: AWS::Serverless::Application | ||
# DependsOn: | ||
# - DatadogShippingStackSet | ||
# Properties: | ||
# Location: "./stacksets/logging/stackset.yaml" | ||
# Parameters: | ||
# DestinationArn: !Ref DataDogLogsDestinationArn | ||
# DeploymentOrgId: !Ref AwsOrgRootId | ||
# TargetRegions: !Ref TargetRegions | ||
|
||
# CwCrossAccountShareStackSet: | ||
# Type: AWS::Serverless::Application | ||
# Properties: | ||
# Location: "./stacksets/metrics/stackset.yaml" | ||
# Parameters: | ||
# DeploymentOrgId: !Ref AwsOrgRootId | ||
# TargetRegions: !Ref TargetRegions | ||
# AwsOamSinkArn: !Ref AwsOamSinkArn | ||
# CrossAccountSharingPolicy: View-Access-for-all-services | ||
# MonitoringAccountId: !Select [ "4", !Split [ ":", !Ref AwsOamSinkArn ] ] | ||
# ObservabilityOuPath: !Sub "${AwsOrgId}/${AwsOrgRootId}/${ManagementOu}/${ObservabilityOu}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters