Ronald b64674623e
Copyright headers for missing files/folders (#16708)
* copyright headers for agent folder
2023-03-28 18:48:58 -04:00

20 lines
642 B
Bash

#!/bin/bash -e
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
##Move datadog files
mv /home/ubuntu/scripts/conf.yaml /etc/datadog-agent/conf.d/consul.d/
mv /home/ubuntu/scripts/datadog.yaml /etc/datadog-agent/
##Move Consul Config that hooks up to datadog
mkdir -p /opt/consul/config
mv /home/ubuntu/scripts/telemetry.json /opt/consul/config/
## Let everyone own their stuff now
chown dd-agent:dd-agent /etc/datadog-agent/conf.d/consul.d/conf.yaml
chown dd-agent:dd-agent /etc/datadog-agent/datadog.yaml
## Put the key in the datadog.yaml
sed -i "s/api_key:.*/api_key: ${DD_API_KEY}/" /etc/datadog-agent/datadog.yaml