This file contains hidden or 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
esphome: | |
name: cabin-fireplace | |
platform: ESP8266 | |
board: d1_mini_lite | |
# Enable logging | |
logger: | |
# Enable Home Assistant API | |
api: |
This file contains hidden or 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
alias: "Battery: Intelligent Octopus pause GivEnergy whilst charging" | |
description: "Whilst in an Octopus Intelligent slot, and EV is charging, disable discharge on GivEnergy inverter" | |
trigger: | |
- platform: state | |
entity_id: | |
- binary_sensor.octopus_intelligent_slot | |
- platform: numeric_state | |
entity_id: sensor.wallbox_portal_charging_power | |
above: 0.1 | |
condition: [] |
This file contains hidden or 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
# A script to pull information from the Wireguard CLI and redirect to a MQTT Broker | |
# Based on the original script written by valvex - https://community.home-assistant.io/t/send-wireguard-client-info-to-ha-with-mqtt-template-sensor-to-show-active-clients/259532 | |
# Paul Braham 2022 | |
#!/bin/bash | |
CONF_FILE="/etc/wireguard/wg0.conf" | |
MQTT_IP="192.168.1.200" | |
MQTT_USERNAME="mqttuser" | |
MQTT_PASSWORD="mqttpass" |
This file contains hidden or 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
# apiVersion: v1 | |
# kind: Namespace | |
# metadata: | |
# name: homeassistant | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
namespace: homeassistant | |
name: homeassistant-mysql |
This file contains hidden or 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
-/+ module.cognito.aws_cognito_user_pool.pool (new resource required) | |
id: "eu-west-1_wkghCiMhd" => <computed> (forces new resource) | |
admin_create_user_config.#: "1" => <computed> | |
arn: "arn:aws:cognito-idp:eu-west-1:600395332734:userpool/eu-west-1_wkghCiMhd" => <computed> | |
auto_verified_attributes.#: "1" => "1" | |
auto_verified_attributes.881205744: "email" => "email" | |
creation_date: "2019-06-05T12:14:15Z" => <computed> | |
email_verification_message: "" => <computed> | |
email_verification_subject: "" => <computed> | |
endpoint: "cognito-idp.eu-west-1.amazonaws.com/eu-west-1_wkghCiMhd" => <computed> |
This file contains hidden or 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
#!/bin/bash -xe | |
exec > >(tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1 |