Suggested fix ``` $default_config['seo']['index'] = Altis\get_environment_type() === 'production'; // ... if ( get_config()['seo']['index'] ?? false ) { add_filter( 'robots_txt', function ( $text ) { $text .= "User-agent: *\nDisallow: /\n"; return $text; } ); } ``` Came from: https://github.com/humanmade/terraform-app-stack/issues/1484