// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT package config const ( RUN_IN_CONTAINER = "RUN_IN_CONTAINER" RUN_IN_CONTAINER_TRUE = "True" RUN_IN_AWS = "RUN_IN_AWS" RUN_IN_AWS_TRUE = "True" RUN_WITH_IRSA = "RUN_WITH_IRSA" RUN_WITH_IRSA_TRUE = "True" USE_DEFAULT_CONFIG = "USE_DEFAULT_CONFIG" USE_DEFAULT_CONFIG_TRUE = "True" HOST_NAME = "HOST_NAME" POD_NAME = "POD_NAME" HOST_IP = "HOST_IP" CWConfigContent = "CW_CONFIG_CONTENT" )