github.com/mweagle/Sparta@v1.15.0/provision_custom_resources.go (about)

     1  package sparta
     2  
     3  import "fmt"
     4  
     5  func customResourceDescription(serviceName string, targetType string) string {
     6  	return fmt.Sprintf("%s: CloudFormation CustomResource to configure %s",
     7  		serviceName,
     8  		targetType)
     9  }